1 23 package com.tc.jrexx.regex; 24 25 final class Terminal_GroupBegin { 26 static final Terminal_GroupBegin INSTANCE = new Terminal_GroupBegin(null); 27 28 final String name; 29 protected Terminal_GroupBegin(String name) { 30 this.name = name; 31 } 32 33 public String toString() { 34 return (this.name==null) ? "(" : "<"+this.name+">"; 35 } 36 37 38 39 } | Popular Tags |