com.inscoper.nbo.Project¶
Represents the XML element Project. More...
Inherits from com.inscoper.nbo.NBOBaseClass
Public Functions¶
| Name | |
|---|---|
| synchronized void | delete() |
| Project() | |
| String | getTypeName() Returns the class type name. |
| String | getXMLName() Returns the XML element name corresponding to this class. |
| ENBOType | getNBOType() Returns the NBO Type corresponding to this class. |
| NBOBaseClassVector | getChildren() Returns a list of all classes derived from this class. |
| NBOBaseClassVector | getSubElements() Returns a list of all child elements contained in this class. |
| void | fromJsonFile(String path, boolean validate) Populates this object from a JSON file. |
| void | fromJsonFile(String path) Populates this object from a JSON file. |
| void | fromJsonString(String json_string, boolean validate) Populates this object from a JSON string. |
| void | fromJsonString(String json_string) Populates this object from a JSON string. |
| void | fromXmlFile(String path, boolean validate) Populates this object from a XML file. |
| void | fromXmlFile(String path) Populates this object from a XML file. |
| void | fromXmlString(String xml_string, boolean validate) Populates this object from a XML string. |
| void | fromXmlString(String xml_string) Populates this object from a XML string. |
| void | toXmlFile(String filename, boolean validate) Serializes this object to an XML file. |
| void | toXmlFile(String filename) Serializes this object to an XML file. |
| String | toXmlString(boolean validate) Serializes this object to an XML string. |
| String | toXmlString() Serializes this object to an XML string. |
| void | setName(String value, boolean validate) Sets the value of the Name attribute. |
| void | setName(String value) Sets the value of the Name attribute. |
| String | getName() Returns the value of the Name attribute. |
| void | resetName() Resets the Name attribute to an unset state. |
| boolean | hasName() Checks whether the Name attribute is present. |
| void | setID(ProjectID_Type value, boolean validate) Sets the value of the ID attribute. |
| void | setID(ProjectID_Type value) Sets the value of the ID attribute. |
| ProjectID_Type | getID() Returns the value of the ID attribute. |
| void | resetID() Resets the ID attribute to an unset state. |
| boolean | hasID() Checks whether the optional ID attribute is present. |
| void | setDescription(Project_InlineDescription value, boolean validate) Sets the value of the Description element. |
| void | setDescription(Project_InlineDescription value) Sets the value of the Description element. |
| Project_InlineDescription | getDescription() Returns the value of the Description element. |
| void | resetDescription() Resets the Description element to an unset state. |
| boolean | hasDescription() Checks whether the optional Description element is present. |
| void | setExperimenterRef(ExperimenterRef value, boolean validate) Sets the value of the ExperimenterRef element. |
| void | setExperimenterRef(ExperimenterRef value) Sets the value of the ExperimenterRef element. |
| ExperimenterRef | getExperimenterRef() Returns the value of the ExperimenterRef element. |
| void | resetExperimenterRef() Resets the ExperimenterRef element to an unset state. |
| boolean | hasExperimenterRef() Checks whether the optional ExperimenterRef element is present. |
| void | setExperimenterGroupRef(ExperimenterGroupRef value, boolean validate) Sets the value of the ExperimenterGroupRef element. |
| void | setExperimenterGroupRef(ExperimenterGroupRef value) Sets the value of the ExperimenterGroupRef element. |
| ExperimenterGroupRef | getExperimenterGroupRef() Returns the value of the ExperimenterGroupRef element. |
| void | resetExperimenterGroupRef() Resets the ExperimenterGroupRef element to an unset state. |
| boolean | hasExperimenterGroupRef() Checks whether the optional ExperimenterGroupRef element is present. |
| void | setDatasetRef_List(DatasetRefVector value, boolean validate) Sets the list of DatasetRef elements. |
| void | setDatasetRef_List(DatasetRefVector value) Sets the list of DatasetRef elements. |
| DatasetRefVector | getDatasetRef_List() Returns the list of DatasetRef elements. |
| void | addToDatasetRef_List(DatasetRef value, boolean validate) Adds a new DatasetRef element to this object. |
| void | addToDatasetRef_List(DatasetRef value) Adds a new DatasetRef element to this object. |
| void | clearDatasetRef_List() Clear the list of DatasetRef. |
| void | setAnnotationRef_List(AnnotationRefVector value, boolean validate) Sets the list of AnnotationRef elements. |
| void | setAnnotationRef_List(AnnotationRefVector value) Sets the list of AnnotationRef elements. |
| AnnotationRefVector | getAnnotationRef_List() Returns the list of AnnotationRef elements. |
| void | addToAnnotationRef_List(AnnotationRef value, boolean validate) Adds a new AnnotationRef element to this object. |
| void | addToAnnotationRef_List(AnnotationRef value) Adds a new AnnotationRef element to this object. |
| void | clearAnnotationRef_List() Clear the list of AnnotationRef. |
| Project | __internal_create(long cPtr, boolean own) |
| Project | fromBase(NBOBaseClass base) Cast a NBOBaseClass to a CMOS. |
| StringSet | getNameAllowedValues() Returns the allowed values for this attribut. |
Protected Functions¶
| Name | |
|---|---|
| Project(long cPtr, boolean cMemoryOwn) | |
| void | swigSetCMemOwn(boolean own) |
| void | finalize() |
| long | getCPtr(Project obj) |
Additional inherited members¶
Protected Functions inherited from com.inscoper.nbo.NBOBaseClass
| Name | |
|---|---|
| NBOBaseClass(long cPtr, boolean cMemoryOwn) |
Detailed Description¶
Represents the XML element Project.
The Project ID is required. Datasets can be grouped into projects using a many-to-many relationship. A Dataset may belong to one or more Projects by including one or more ProjectRef elements which refer to Project IDs. Projects do not directly contain images - only by virtue of containing datasets, which themselves contain images.
Public Functions Documentation¶
function delete¶
Reimplements: com.inscoper.nbo.NBOBaseClass.delete
function Project¶
function getTypeName¶
Returns the class type name.
Return: The class type name
Reimplements: com.inscoper.nbo.NBOBaseClass.getTypeName
function getXMLName¶
Returns the XML element name corresponding to this class.
Return: The XML element name
Reimplements: com.inscoper.nbo.NBOBaseClass.getXMLName
function getNBOType¶
Returns the NBO Type corresponding to this class.
Return: The NBO Type value
Reimplements: com.inscoper.nbo.NBOBaseClass.getNBOType
function getChildren¶
Returns a list of all classes derived from this class.
Return: The list of derived classes
Reimplements: com.inscoper.nbo.NBOBaseClass.getChildren
function getSubElements¶
Returns a list of all child elements contained in this class.
Return: The list of child classes
Reimplements: com.inscoper.nbo.NBOBaseClass.getSubElements
function fromJsonFile¶
Populates this object from a JSON file.
Parameters:
- path The path to the JSON file
- validate If true, validates constraints on value. Default is true.
function fromJsonFile¶
Populates this object from a JSON file.
Parameters:
- path The path to the JSON file
function fromJsonString¶
Populates this object from a JSON string.
Parameters:
- json_string The JSON content as a string
- validate If true, validates constraints on value. Default is true.
function fromJsonString¶
Populates this object from a JSON string.
Parameters:
- json_string The JSON content as a string
function fromXmlFile¶
Populates this object from a XML file.
Parameters:
- path The path to the XML file
- validate If true, validates constraints on value. Default is true.
function fromXmlFile¶
Populates this object from a XML file.
Parameters:
- path The path to the XML file
function fromXmlString¶
Populates this object from a XML string.
Parameters:
- xml_string The XML content as a string
- validate If true, validates constraints on value. Default is true.
function fromXmlString¶
Populates this object from a XML string.
Parameters:
- xml_string The XML content as a string
function toXmlFile¶
Serializes this object to an XML file.
Parameters:
- filename The path to the output XML file
- validate If true, validates constraints on value. Default is true.
function toXmlFile¶
Serializes this object to an XML file.
Parameters:
- filename The path to the output XML file
function toXmlString¶
Serializes this object to an XML string.
Parameters:
- validate If true, validates constraints on value. Default is true.
Return: A string containing the XML representation of this object
function toXmlString¶
Serializes this object to an XML string.
Return: A string containing the XML representation of this object
function setName¶
Sets the value of the Name attribute.
Parameters:
- value The value to set
- validate If true, validates constraints on value. Default is true.
No description available in the XSD standard.
function setName¶
Sets the value of the Name attribute.
Parameters:
- value The value to set
No description available in the XSD standard.
function getName¶
Returns the value of the Name attribute.
Return: The value of the attribute
No description available in the XSD standard.
function resetName¶
Resets the Name attribute to an unset state.
No description available in the XSD standard.
function hasName¶
Checks whether the Name attribute is present.
Return: true if the attribute has been set, false otherwise
No description available in the XSD standard.
function setID¶
Sets the value of the ID attribute.
Parameters:
- value The value to set
- validate If true, validates constraints on value. Default is true.
No description available in the XSD standard.
function setID¶
Sets the value of the ID attribute.
Parameters:
- value The value to set
No description available in the XSD standard.
function getID¶
Returns the value of the ID attribute.
Return: The value of the attribute
No description available in the XSD standard.
function resetID¶
Resets the ID attribute to an unset state.
No description available in the XSD standard.
function hasID¶
Checks whether the optional ID attribute is present.
Return: true if the optional attribute has been set, false otherwise
No description available in the XSD standard.
function setDescription¶
Sets the value of the Description element.
Parameters:
- value The value to set
- validate If true, validates constraints on value. Default is true.
A description for the project. [plain-text multi-line string]
function setDescription¶
Sets the value of the Description element.
Parameters:
- value The value to set
A description for the project. [plain-text multi-line string]
function getDescription¶
Returns the value of the Description element.
Return: The value of the element
A description for the project. [plain-text multi-line string]
function resetDescription¶
Resets the Description element to an unset state.
A description for the project. [plain-text multi-line string]
function hasDescription¶
Checks whether the optional Description element is present.
Return: true if the optional attribute has been set, false otherwise
A description for the project. [plain-text multi-line string]
function setExperimenterRef¶
Sets the value of the ExperimenterRef element.
Parameters:
- value The value to set
- validate If true, validates constraints on value. Default is true.
No description available in the XSD standard.
function setExperimenterRef¶
Sets the value of the ExperimenterRef element.
Parameters:
- value The value to set
No description available in the XSD standard.
function getExperimenterRef¶
Returns the value of the ExperimenterRef element.
Return: The value of the element
No description available in the XSD standard.
function resetExperimenterRef¶
Resets the ExperimenterRef element to an unset state.
No description available in the XSD standard.
function hasExperimenterRef¶
Checks whether the optional ExperimenterRef element is present.
Return: true if the optional attribute has been set, false otherwise
No description available in the XSD standard.
function setExperimenterGroupRef¶
Sets the value of the ExperimenterGroupRef element.
Parameters:
- value The value to set
- validate If true, validates constraints on value. Default is true.
No description available in the XSD standard.
function setExperimenterGroupRef¶
Sets the value of the ExperimenterGroupRef element.
Parameters:
- value The value to set
No description available in the XSD standard.
function getExperimenterGroupRef¶
Returns the value of the ExperimenterGroupRef element.
Return: The value of the element
No description available in the XSD standard.
function resetExperimenterGroupRef¶
Resets the ExperimenterGroupRef element to an unset state.
No description available in the XSD standard.
function hasExperimenterGroupRef¶
Checks whether the optional ExperimenterGroupRef element is present.
Return: true if the optional attribute has been set, false otherwise
No description available in the XSD standard.
function setDatasetRef_List¶
Sets the list of DatasetRef elements.
Parameters:
- value The new list of DatasetRef elements
- validate If true, validates constraints on value. Default is true.
No description available in the XSD standard.
function setDatasetRef_List¶
Sets the list of DatasetRef elements.
Parameters:
- value The new list of DatasetRef elements
No description available in the XSD standard.
function getDatasetRef_List¶
Returns the list of DatasetRef elements.
Return: The list of DatasetRef elements
No description available in the XSD standard.
function addToDatasetRef_List¶
Adds a new DatasetRef element to this object.
Parameters:
- value The element to add
- validate If true, validates constraints on value. Default is true.
No description available in the XSD standard.
function addToDatasetRef_List¶
Adds a new DatasetRef element to this object.
Parameters:
- value The element to add
No description available in the XSD standard.
function clearDatasetRef_List¶
Clear the list of DatasetRef.
No description available in the XSD standard.
function setAnnotationRef_List¶
Sets the list of AnnotationRef elements.
Parameters:
- value The new list of AnnotationRef elements
- validate If true, validates constraints on value. Default is true.
No description available in the XSD standard.
function setAnnotationRef_List¶
Sets the list of AnnotationRef elements.
Parameters:
- value The new list of AnnotationRef elements
No description available in the XSD standard.
function getAnnotationRef_List¶
Returns the list of AnnotationRef elements.
Return: The list of AnnotationRef elements
No description available in the XSD standard.
function addToAnnotationRef_List¶
Adds a new AnnotationRef element to this object.
Parameters:
- value The element to add
- validate If true, validates constraints on value. Default is true.
No description available in the XSD standard.
function addToAnnotationRef_List¶
Adds a new AnnotationRef element to this object.
Parameters:
- value The element to add
No description available in the XSD standard.
function clearAnnotationRef_List¶
Clear the list of AnnotationRef.
No description available in the XSD standard.
function __internal_create¶
Reimplements: com.inscoper.nbo.NBOBaseClass.__internal_create
function fromBase¶
Cast a NBOBaseClass to a CMOS.
Parameters:
- base The base class to cast
Return: The casted element, or nullptr if the cast fails
function getNameAllowedValues¶
Returns the allowed values for this attribut.
Return: The list of allowed values
No description available in the XSD standard.
Protected Functions Documentation¶
function Project¶
function swigSetCMemOwn¶
Reimplements: com.inscoper.nbo.NBOBaseClass.swigSetCMemOwn
function finalize¶
Reimplements: com.inscoper.nbo.NBOBaseClass.finalize
function getCPtr¶
Updated on 2026-06-22 at 17:06:32 +0200