public class Channel extends AbstractOMEModelObject
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
NAMESPACE |
Constructor and Description |
---|
Channel()
Default constructor.
|
Channel(Channel orig)
Copy constructor.
|
Channel(org.w3c.dom.Element element,
OMEModel model)
Constructs Channel recursively from an XML DOM tree.
|
Modifier and Type | Method and Description |
---|---|
org.w3c.dom.Element |
asXMLElement(org.w3c.dom.Document document)
Takes the entire object hierarchy and produces an XML DOM tree.
|
protected org.w3c.dom.Element |
asXMLElement(org.w3c.dom.Document document,
org.w3c.dom.Element Channel_element)
Takes the entire object hierarchy and produced an XML DOM tree taking
into account class hierarchy.
|
java.util.List<Annotation> |
copyLinkedAnnotationList() |
AcquisitionMode |
getAcquisitionMode() |
Color |
getColor() |
ContrastMethod |
getContrastMethod() |
DetectorSettings |
getDetectorSettings() |
PositiveInteger |
getEmissionWavelength() |
PositiveInteger |
getExcitationWavelength() |
java.lang.String |
getFluor() |
java.lang.String |
getID() |
IlluminationType |
getIlluminationType() |
LightPath |
getLightPath() |
LightSourceSettings |
getLightSourceSettings() |
Annotation |
getLinkedAnnotation(int index) |
FilterSet |
getLinkedFilterSet() |
java.lang.String |
getName() |
java.lang.Double |
getNDFilter() |
java.lang.Double |
getPinholeSize() |
Pixels |
getPixels() |
java.lang.Integer |
getPockelCellSetting() |
PositiveInteger |
getSamplesPerPixel() |
boolean |
link(Reference reference,
OMEModelObject o)
Link a given OME model object to this model object.
|
boolean |
linkAnnotation(Annotation o) |
void |
linkFilterSet(FilterSet o) |
void |
setAcquisitionMode(AcquisitionMode acquisitionMode) |
void |
setColor(Color color) |
void |
setContrastMethod(ContrastMethod contrastMethod) |
void |
setDetectorSettings(DetectorSettings detectorSettings) |
void |
setEmissionWavelength(PositiveInteger emissionWavelength) |
void |
setExcitationWavelength(PositiveInteger excitationWavelength) |
void |
setFluor(java.lang.String fluor) |
void |
setID(java.lang.String id) |
void |
setIlluminationType(IlluminationType illuminationType) |
void |
setLightPath(LightPath lightPath) |
void |
setLightSourceSettings(LightSourceSettings lightSourceSettings) |
Annotation |
setLinkedAnnotation(int index,
Annotation o) |
void |
setName(java.lang.String name) |
void |
setNDFilter(java.lang.Double ndFilter) |
void |
setPinholeSize(java.lang.Double pinholeSize) |
void |
setPixels(Pixels pixels_BackReference) |
void |
setPockelCellSetting(java.lang.Integer pockelCellSetting) |
void |
setSamplesPerPixel(PositiveInteger samplesPerPixel) |
int |
sizeOfLinkedAnnotationList() |
boolean |
unlinkAnnotation(Annotation o) |
void |
unlinkFilterSet(FilterSet o) |
void |
update(org.w3c.dom.Element element,
OMEModel model)
Updates Channel recursively from an XML DOM tree.
|
getChildrenByTagName, stripNamespacePrefix
public static final java.lang.String NAMESPACE
public Channel()
public Channel(org.w3c.dom.Element element, OMEModel model) throws EnumerationException
element
- Root of the XML DOM tree to construct a model object
graph from.model
- Handler for the OME model which keeps track of instances
and references seen during object population.EnumerationException
- If there is an error instantiating an
enumeration during model object creation.public Channel(Channel orig)
public void update(org.w3c.dom.Element element, OMEModel model) throws EnumerationException
update
in interface OMEModelObject
update
in class AbstractOMEModelObject
element
- Root of the XML DOM tree to construct a model object
graph from.model
- Handler for the OME model which keeps track of instances
and references seen during object population.EnumerationException
- If there is an error instantiating an
enumeration during model object creation.public boolean link(Reference reference, OMEModelObject o)
OMEModelObject
link
in interface OMEModelObject
link
in class AbstractOMEModelObject
reference
- The type qualifier for the reference. This should
be the corresponding reference type for o
. If, for example,
o
is of type Image
, reference
MUST be of type ImageRef
.o
- Model object to link to.true
if this model object was able to handle the
reference, false
otherwise.public java.lang.Double getPinholeSize()
public void setPinholeSize(java.lang.Double pinholeSize)
public java.lang.String getName()
public void setName(java.lang.String name)
public AcquisitionMode getAcquisitionMode()
public void setAcquisitionMode(AcquisitionMode acquisitionMode)
public Color getColor()
public void setColor(Color color)
public ContrastMethod getContrastMethod()
public void setContrastMethod(ContrastMethod contrastMethod)
public PositiveInteger getExcitationWavelength()
public void setExcitationWavelength(PositiveInteger excitationWavelength)
public IlluminationType getIlluminationType()
public void setIlluminationType(IlluminationType illuminationType)
public java.lang.String getFluor()
public void setFluor(java.lang.String fluor)
public java.lang.Integer getPockelCellSetting()
public void setPockelCellSetting(java.lang.Integer pockelCellSetting)
public PositiveInteger getEmissionWavelength()
public void setEmissionWavelength(PositiveInteger emissionWavelength)
public java.lang.Double getNDFilter()
public void setNDFilter(java.lang.Double ndFilter)
public java.lang.String getID()
public void setID(java.lang.String id)
public PositiveInteger getSamplesPerPixel()
public void setSamplesPerPixel(PositiveInteger samplesPerPixel)
public LightSourceSettings getLightSourceSettings()
public void setLightSourceSettings(LightSourceSettings lightSourceSettings)
public DetectorSettings getDetectorSettings()
public void setDetectorSettings(DetectorSettings detectorSettings)
public FilterSet getLinkedFilterSet()
public void linkFilterSet(FilterSet o)
public void unlinkFilterSet(FilterSet o)
public int sizeOfLinkedAnnotationList()
public java.util.List<Annotation> copyLinkedAnnotationList()
public Annotation getLinkedAnnotation(int index)
public Annotation setLinkedAnnotation(int index, Annotation o)
public boolean linkAnnotation(Annotation o)
public boolean unlinkAnnotation(Annotation o)
public LightPath getLightPath()
public void setLightPath(LightPath lightPath)
public Pixels getPixels()
public void setPixels(Pixels pixels_BackReference)
public org.w3c.dom.Element asXMLElement(org.w3c.dom.Document document)
OMEModelObject
asXMLElement
in interface OMEModelObject
asXMLElement
in class AbstractOMEModelObject
document
- Destination document for element creation, etc.protected org.w3c.dom.Element asXMLElement(org.w3c.dom.Document document, org.w3c.dom.Element Channel_element)
AbstractOMEModelObject
asXMLElement
in class AbstractOMEModelObject
document
- Destination document for element creation, etc.Channel_element
- Element from the subclass. If null a new
element will be created of this class.element
populated with properties from this class.Copyright © 2014 Open Microscopy Environment