hi,
i am using Partition.
i want to use a java code.
the question is how can i have the GraphElements in the java code?
i am using Partition.
i want to use a java code.
the question is how can i have the GraphElements in the java code?
-
Similarly to you other question, getGraph() function is the key.
For example to access components, connections or metadata:
Node node = getGraph().getNodes().get("READER0");
IConnection connection = getGraph().getConnection("MyConnection");
getGraph().getDataRecordMetadata("MyMetadata");
Please sign in to leave a comment.
Comments 1