Constraint - MessageOnTap/MessageOnTap_API GitHub Wiki
Constraint describes the relationship between two tags.
Usage
//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
Summary
Public Constructors
Function |
---|
Constraint ( String tagA_name, String tagB_name, Relation relation ) |