public class Plate extends AbstractOMEModelObject
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
NAMESPACE |
Constructor and Description |
---|
Plate()
Default constructor.
|
Plate(org.w3c.dom.Element element,
OMEModel model)
Constructs Plate recursively from an XML DOM tree.
|
Plate(Plate orig)
Copy constructor.
|
Modifier and Type | Method and Description |
---|---|
void |
addPlateAcquisition(PlateAcquisition plateAcquisition) |
void |
addWell(Well well) |
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 Plate_element)
Takes the entire object hierarchy and produced an XML DOM tree taking
into account class hierarchy.
|
java.util.List<Annotation> |
copyLinkedAnnotationList() |
java.util.List<Screen> |
copyLinkedScreenList() |
java.util.List<PlateAcquisition> |
copyPlateAcquisitionList() |
java.util.List<Well> |
copyWellList() |
NamingConvention |
getColumnNamingConvention() |
PositiveInteger |
getColumns() |
java.lang.String |
getDescription() |
java.lang.String |
getExternalIdentifier() |
NonNegativeInteger |
getFieldIndex() |
java.lang.String |
getID() |
Annotation |
getLinkedAnnotation(int index) |
Screen |
getLinkedScreen(int index) |
java.lang.String |
getName() |
PlateAcquisition |
getPlateAcquisition(int index) |
NamingConvention |
getRowNamingConvention() |
PositiveInteger |
getRows() |
java.lang.String |
getStatus() |
Well |
getWell(int index) |
java.lang.Double |
getWellOriginX() |
java.lang.Double |
getWellOriginY() |
boolean |
link(Reference reference,
OMEModelObject o)
Link a given OME model object to this model object.
|
boolean |
linkAnnotation(Annotation o) |
boolean |
linkScreen(Screen o) |
void |
removePlateAcquisition(PlateAcquisition plateAcquisition) |
void |
removeWell(Well well) |
void |
setColumnNamingConvention(NamingConvention columnNamingConvention) |
void |
setColumns(PositiveInteger columns) |
void |
setDescription(java.lang.String description) |
void |
setExternalIdentifier(java.lang.String externalIdentifier) |
void |
setFieldIndex(NonNegativeInteger fieldIndex) |
void |
setID(java.lang.String id) |
Annotation |
setLinkedAnnotation(int index,
Annotation o) |
Screen |
setLinkedScreen(int index,
Screen o) |
void |
setName(java.lang.String name) |
PlateAcquisition |
setPlateAcquisition(int index,
PlateAcquisition plateAcquisition) |
void |
setRowNamingConvention(NamingConvention rowNamingConvention) |
void |
setRows(PositiveInteger rows) |
void |
setStatus(java.lang.String status) |
Well |
setWell(int index,
Well well) |
void |
setWellOriginX(java.lang.Double wellOriginX) |
void |
setWellOriginY(java.lang.Double wellOriginY) |
int |
sizeOfLinkedAnnotationList() |
int |
sizeOfLinkedScreenList() |
int |
sizeOfPlateAcquisitionList() |
int |
sizeOfWellList() |
boolean |
unlinkAnnotation(Annotation o) |
boolean |
unlinkScreen(Screen o) |
void |
update(org.w3c.dom.Element element,
OMEModel model)
Updates Plate recursively from an XML DOM tree.
|
getChildrenByTagName, stripNamespacePrefix
public static final java.lang.String NAMESPACE
public Plate()
public Plate(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 Plate(Plate 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.String getStatus()
public void setStatus(java.lang.String status)
public PositiveInteger getRows()
public void setRows(PositiveInteger rows)
public java.lang.String getExternalIdentifier()
public void setExternalIdentifier(java.lang.String externalIdentifier)
public NamingConvention getRowNamingConvention()
public void setRowNamingConvention(NamingConvention rowNamingConvention)
public NamingConvention getColumnNamingConvention()
public void setColumnNamingConvention(NamingConvention columnNamingConvention)
public NonNegativeInteger getFieldIndex()
public void setFieldIndex(NonNegativeInteger fieldIndex)
public java.lang.Double getWellOriginY()
public void setWellOriginY(java.lang.Double wellOriginY)
public java.lang.Double getWellOriginX()
public void setWellOriginX(java.lang.Double wellOriginX)
public java.lang.String getID()
public void setID(java.lang.String id)
public PositiveInteger getColumns()
public void setColumns(PositiveInteger columns)
public java.lang.String getName()
public void setName(java.lang.String name)
public java.lang.String getDescription()
public void setDescription(java.lang.String description)
public int sizeOfWellList()
public java.util.List<Well> copyWellList()
public Well getWell(int index)
public void addWell(Well well)
public void removeWell(Well well)
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 int sizeOfPlateAcquisitionList()
public java.util.List<PlateAcquisition> copyPlateAcquisitionList()
public PlateAcquisition getPlateAcquisition(int index)
public PlateAcquisition setPlateAcquisition(int index, PlateAcquisition plateAcquisition)
public void addPlateAcquisition(PlateAcquisition plateAcquisition)
public void removePlateAcquisition(PlateAcquisition plateAcquisition)
public int sizeOfLinkedScreenList()
public java.util.List<Screen> copyLinkedScreenList()
public Screen getLinkedScreen(int index)
public boolean linkScreen(Screen o)
public boolean unlinkScreen(Screen o)
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 Plate_element)
AbstractOMEModelObject
asXMLElement
in class AbstractOMEModelObject
document
- Destination document for element creation, etc.Plate_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