|
MEOop
 | areaID:
int
|  | objectID:
int |
A handle to a
GOPRR conceptual or representational instance in the repository. A concepts can
be a Graph, Object, Relationship, Role, Port, Property or Binding. A
representation can be a Diagram, Matrix or Table, or an object or binding
representation. Generally, an MEOop is either built based on output from an oid;
command in a generator (as in the Watch example), or then obtained as an answer
to a previous API command.
|
|
MEAny
 | meType:
string
|  | meValue:
string |
Used to
represent a value that could be one of several types. meType can take string
values such as MEOop, MENull, String, Text, Integer, Point or OrderedCollection.
Note that it is not an METype. meValue is the actual value, stored as a
string representation:
 | For
MEOop: 3_12345 (areaID, underscore,
objectID) |  | For
String or Text: 'a string' (note the quotes; embedded quotes are
doubled) |  | For
Integer: 34 (note you must convert this string value to an
integer) |  | For
Point: 10,20 (x co-ordinate, y co-ordinate: note no space after the
comma) |  | For
OrderedCollection: space-separated representations as above of MEOop or
String |
|
|
MENull
Represents the nil value, e.g. the
return value from a command that returns nothing, or (within an MEAny) the value
of a property whose data type is an object type, but which has no object
assigned yet as a value.
|