org.dcm4che.srom
Interface Equipment


public interface Equipment

The Equipment interface represents some of the fields of the DICOM General Equipment Module.

Version:
1.0
Author:
gunter.zeilinger@tiani.com
See Also:
"DICOM Part 3: Information Object Definitions, Annex C.7.5.1 General Equipment Module"

Method Summary
 java.lang.String getDepartmentName()
          Returns the DICOM Institutional Department Name.
 java.lang.String getInstitutionAddress()
          Returns the DICOM Institution Address.
 java.lang.String getInstitutionName()
          Returns the DICOM Institution Name.
 java.lang.String getManufacturer()
          Returns the DICOM Manufacturer.
 java.lang.String getModelName()
          Returns the DICOM Manufacturer's Model Name.
 java.lang.String getStationName()
          Returns the DICOM Station Name.
 void setDepartmentName(java.lang.String departmentName)
          Sets the DICOM Institutional Department Name.
 void setInstitutionAddress(java.lang.String institutionAddress)
          Sets the DICOM Institution Address.
 void setInstitutionName(java.lang.String institutionName)
          Sets the DICOM Institution Name.
 void setManufacturer(java.lang.String manufacturer)
          Sets the DICOM Manufacturer.
 void setModelName(java.lang.String modelName)
          Sets the DICOM Manufacturer's Model Name.
 void setStationName(java.lang.String stationName)
          Sets the DICOM Station Name.
 void toDataset(Dataset ds)
           
 

Method Detail

getManufacturer

java.lang.String getManufacturer()
Returns the DICOM Manufacturer.
DICOM Tag: (0008,0070)
Manufacturer of the equipment that produced the digital images.

Returns:
the Manufacturer.

setManufacturer

void setManufacturer(java.lang.String manufacturer)
Sets the DICOM Manufacturer.
DICOM Tag: (0008,0070)
Manufacturer of the equipment that produced the digital images.

Parameters:
manufacturer - the Manufacturer.

getInstitutionName

java.lang.String getInstitutionName()
Returns the DICOM Institution Name.
DICOM Tag: (0008,0080)
Institution where the equipment is located that produced the digital images.

Returns:
the Institution Name.

setInstitutionName

void setInstitutionName(java.lang.String institutionName)
Sets the DICOM Institution Name.
DICOM Tag: (0008,0080)
Institution where the equipment is located that produced the digital images.

Parameters:
institutionName - the Institution Name.

getInstitutionAddress

java.lang.String getInstitutionAddress()
Returns the DICOM Institution Address.
DICOM Tag: (0008,0081)
Mailing address of the institution where the equipment is located that produced the digital images.

Returns:
the Institution Address.

setInstitutionAddress

void setInstitutionAddress(java.lang.String institutionAddress)
Sets the DICOM Institution Address.
DICOM Tag: (0008,0081)
Mailing address of the institution where the equipment is located that produced the digital images.

Parameters:
institutionAddress - the Institution Address.

getStationName

java.lang.String getStationName()
Returns the DICOM Station Name.
DICOM Tag: (0008,1010)
User defined name identifying the machine that produced the digital images.

Returns:
the Station Name.

setStationName

void setStationName(java.lang.String stationName)
Sets the DICOM Station Name.
DICOM Tag: (0008,1010)
User defined name identifying the machine that produced the digital images.

Parameters:
stationName - the Station Name.

getDepartmentName

java.lang.String getDepartmentName()
Returns the DICOM Institutional Department Name.
DICOM Tag: (0008,1040)
Department in the institution where the equipment is located that produced the digital images.

Returns:
the Institutional Department Name.

setDepartmentName

void setDepartmentName(java.lang.String departmentName)
Sets the DICOM Institutional Department Name.
DICOM Tag: (0008,1040)
Department in the institution where the equipment is located that produced the digital images.

Parameters:
departmentName - the Institutional Department Name.

getModelName

java.lang.String getModelName()
Returns the DICOM Manufacturer's Model Name.
DICOM Tag: (0008,1090)
Manufacturer's model number of the equipment that produced the digital images.

Returns:
the Manufacturer's Model Name.

setModelName

void setModelName(java.lang.String modelName)
Sets the DICOM Manufacturer's Model Name.
DICOM Tag: (0008,1090)
Manufacturer's model number of the equipment that produced the digital images.

Parameters:
modelName - the Manufacturer's Model Name.

toDataset

void toDataset(Dataset ds)