public class Screen extends AbstractOMEModelObject
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
NAMESPACE |
Constructor and Description |
---|
Screen()
Default constructor.
|
Screen(org.w3c.dom.Element element,
OMEModel model)
Constructs Screen recursively from an XML DOM tree.
|
Screen(Screen orig)
Copy constructor.
|
Modifier and Type | Method and Description |
---|---|
void |
addReagent(Reagent reagent) |
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 Screen_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<Plate> |
copyLinkedPlateList() |
java.util.List<Reagent> |
copyReagentList() |
java.lang.String |
getDescription() |
java.lang.String |
getID() |
Annotation |
getLinkedAnnotation(int index) |
Plate |
getLinkedPlate(int index) |
java.lang.String |
getName() |
java.lang.String |
getProtocolDescription() |
java.lang.String |
getProtocolIdentifier() |
Reagent |
getReagent(int index) |
java.lang.String |
getReagentSetDescription() |
java.lang.String |
getReagentSetIdentifier() |
java.lang.String |
getType() |
boolean |
link(Reference reference,
OMEModelObject o)
Link a given OME model object to this model object.
|
boolean |
linkAnnotation(Annotation o) |
boolean |
linkPlate(Plate o) |
void |
removeReagent(Reagent reagent) |
void |
setDescription(java.lang.String description) |
void |
setID(java.lang.String id) |
Annotation |
setLinkedAnnotation(int index,
Annotation o) |
Plate |
setLinkedPlate(int index,
Plate o) |
void |
setName(java.lang.String name) |
void |
setProtocolDescription(java.lang.String protocolDescription) |
void |
setProtocolIdentifier(java.lang.String protocolIdentifier) |
Reagent |
setReagent(int index,
Reagent reagent) |
void |
setReagentSetDescription(java.lang.String reagentSetDescription) |
void |
setReagentSetIdentifier(java.lang.String reagentSetIdentifier) |
void |
setType(java.lang.String type) |
int |
sizeOfLinkedAnnotationList() |
int |
sizeOfLinkedPlateList() |
int |
sizeOfReagentList() |
boolean |
unlinkAnnotation(Annotation o) |
boolean |
unlinkPlate(Plate o) |
void |
update(org.w3c.dom.Element element,
OMEModel model)
Updates Screen recursively from an XML DOM tree.
|
getChildrenByTagName, stripNamespacePrefix
public static final java.lang.String NAMESPACE
public Screen()
public Screen(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 Screen(Screen 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 getName()
public void setName(java.lang.String name)
public java.lang.String getProtocolDescription()
public void setProtocolDescription(java.lang.String protocolDescription)
public java.lang.String getProtocolIdentifier()
public void setProtocolIdentifier(java.lang.String protocolIdentifier)
public java.lang.String getReagentSetDescription()
public void setReagentSetDescription(java.lang.String reagentSetDescription)
public java.lang.String getType()
public void setType(java.lang.String type)
public java.lang.String getID()
public void setID(java.lang.String id)
public java.lang.String getReagentSetIdentifier()
public void setReagentSetIdentifier(java.lang.String reagentSetIdentifier)
public java.lang.String getDescription()
public void setDescription(java.lang.String description)
public int sizeOfReagentList()
public java.util.List<Reagent> copyReagentList()
public Reagent getReagent(int index)
public void addReagent(Reagent reagent)
public void removeReagent(Reagent reagent)
public int sizeOfLinkedPlateList()
public java.util.List<Plate> copyLinkedPlateList()
public Plate getLinkedPlate(int index)
public boolean linkPlate(Plate o)
public boolean unlinkPlate(Plate 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 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 Screen_element)
AbstractOMEModelObject
asXMLElement
in class AbstractOMEModelObject
document
- Destination document for element creation, etc.Screen_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