package node.setComponentNode; import text.*; public class SetRangeNode extends SetComponentNode { char low, high; public SetRangeNode( char low, char high ) { this.low = low; this.high = high; } public String toString() { return Text.toString( low ) + "-" + Text.toString( high ); } public boolean match( char c ) { return low <= c && c <= high; } }