CustomObject

Overview

Abstract class

The abstract base class of all custom classes.

Subtypes

Attributes (data)

Name

Multiplicity

Type

TypeName

1

String

TypeURI

1

NullableAnyURI

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.

Name: 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

Implementation in Proteus Schema

The attribute is implemented as a DEXPI generic attribute for URI values.

Name: 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>