Package wprover
Class GRule
- java.lang.Object
-
- wprover.GRule
-
public class GRule extends java.lang.ObjectRepresents a rule in GeoGebra with a type, name, head, description, and example string.
-
-
Constructor Summary
Constructors Constructor Description GRule(int t, java.lang.String t1, java.lang.String t2, java.lang.String t3, int tx)Constructs a new GRule with the specified type, head, description, example string, and rule type.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisFullRule()Checks if the rule is a FULL rule.booleanisGDDRule()Checks if the rule is a GDD rule.
-
-
-
Constructor Detail
-
GRule
public GRule(int t, java.lang.String t1, java.lang.String t2, java.lang.String t3, int tx)Constructs a new GRule with the specified type, head, description, example string, and rule type.- Parameters:
t- the type of the rulet1- the head of the rulet2- the description of the rulet3- the example string of the ruletx- the rule type (0 for GDD, 1 for FULL)
-
-