-
Notifications
You must be signed in to change notification settings - Fork 6
Constraint
Mars edited this page Aug 1, 2017
·
14 revisions
Constraint describes the relationship between two tags.
//Construct a new object of Constraint Class
Tag A; //Tag A
Tag B; //Tag B
Constraint constraint;
constraint = new Constraint(A.getTagName(), B.getTagName(),
Relation.CONCATENATION); //Relation.SUBORDINATE| Function |
|---|
| Constraint ( String tagA_name, String tagB_name, Relation relation ) |
2017 MessageOnTap