Instance.newInstance()

Signature

Concept newInstance (String uri, String extId)

Domain

action

Description

Creates a new Concept instance of the type specified by uri.

Parameters

NameTypeDescription
uriStringThe URI in the project of the Concept to create.
extIdStringWhen used with ActiveMatrix Decisions, this parameter must be null.

Returns

TypeDescription
ConceptThe newly created Concept instance.

Example

The following example creates a new instance of a Customer object and appends it to the customerArray array:

customerArray[customerArray@length]= Instance.newInstance("com.example.samplenewinstance.Customer", null);

Cautions

none