CustomObject¶
Overview¶
Abstract class
The abstract base class of all custom classes.
Subtypes
Attributes (data)
Name |
Multiplicity |
Type |
---|---|---|
1 |
||
1 |
Implementation in Proteus Schema
Implementation is subclass-specific.
TypeName¶
Attribute (data)
A name that identifies the type of the CustomObject.
Multiplicity: 1
Type: String
Implementation in Proteus Schema
The attribute is implemented as a DEXPI generic attribute for string values.
RDL reference: TYPE NAME ASSIGNMENT CLASS
Name: TypeNameAssignmentClass
AttributeURI: http://sandbox.dexpi.org/rdl/TypeNameAssignmentClass
Example
“micro impedance pump” (String)
Implementation in Proteus Schema
<Equipment
ID="customPump1"
ComponentClass="CustomPump"
ComponentClassURI="http://sandbox.dexpi.org/rdl/CustomPump" ...>
...
<GenericAttributes Set="DexpiAttributes" ...>
<GenericAttribute
Name="TypeNameAssignmentClass"
AttributeURI="http://sandbox.dexpi.org/rdl/TypeNameAssignmentClass"
Format="string"
Value="micro impedance pump" />
...
</GenericAttributes>
...
</Equipment>
TypeURI¶
Attribute (data)
A URI that identifies the type of the CustomObject.
Multiplicity: 1
Type: NullableAnyURI
Implementation in Proteus Schema
The attribute is implemented as a DEXPI generic attribute for URI values.
RDL reference: TYPE URI ASSIGNMENT CLASS
Name: TypeURIAssignmentClass
AttributeURI: http://sandbox.dexpi.org/rdl/TypeURIAssignmentClass
Example
http://www.example.org/MicroImpedancePump
(AnyURI)
Implementation in Proteus Schema
<Equipment
ID="customPump1"
ComponentClass="CustomPump"
ComponentClassURI="http://sandbox.dexpi.org/rdl/CustomPump" ...>
...
<GenericAttributes Set="DexpiAttributes" ...>
<GenericAttribute
Name="TypeURIAssignmentClass"
AttributeURI="http://sandbox.dexpi.org/rdl/TypeURIAssignmentClass"
Format="anyURI"
Value="http://www.example.org/MicroImpedancePump" />
...
</GenericAttributes>
...
</Equipment>