Package EDU.purdue.jtb.parser
Class RRepetitionRange
- java.lang.Object
-
- EDU.purdue.jtb.parser.Expansion_
-
- EDU.purdue.jtb.parser.RegularExpression_
-
- EDU.purdue.jtb.parser.RRepetitionRange
-
public class RRepetitionRange extends RegularExpression_
Describes one-or-more regular expressions ().
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class EDU.purdue.jtb.parser.Expansion_
Expansion_.EXP_TYPE
-
-
Field Summary
Fields Modifier and Type Field Description boolean
hasMax
True if it has a maximum, false otherwiseint
max
The maximumint
min
The minimumRegularExpression_
regexpr
The regular expression which is repeated one or more times-
Fields inherited from class EDU.purdue.jtb.parser.RegularExpression_
label, lhsTokens, private_rexp, rhsToken, tpContext
-
Fields inherited from class EDU.purdue.jtb.parser.Expansion_
EOL, inMinimumSize, myGeneration, nextGenerationIndex, parent
-
-
Constructor Summary
Constructors Constructor Description RRepetitionRange()
Standard constructor
-
Method Summary
-
Methods inherited from class EDU.purdue.jtb.parser.RegularExpression_
CanMatchAnyChar, dump
-
Methods inherited from class EDU.purdue.jtb.parser.Expansion_
dumpPrefix, toString
-
-
-
-
Field Detail
-
regexpr
public RegularExpression_ regexpr
The regular expression which is repeated one or more times
-
min
public int min
The minimum
-
max
public int max
The maximum
-
hasMax
public boolean hasMax
True if it has a maximum, false otherwise
-
-