Search Results
OK to copy?
Examples 1 through 10 of
31 (0.065 seconds)
Class:
org.apache.axis.types.Entities
©,
Rating:
0% of 0,
C1
Class: org.apache.axis.types.NMTokens ©, Rating: 0% of 0, C1
Class: org.apache.axis.types.IDRefs ©, Rating: 0% of 0, C1
Class: org.apache.batik.dom.svg.SystemIdTest ©, Rating: 0% of 0, C1
jgoodies_forms Class: com.jgoodies.forms.layout.RowSpec ©, Rating: 0% of 0, C1
jgoodies_forms Class: com.jgoodies.forms.layout.ColumnSpec ©, Rating: 0% of 0, C1
Class: org.apache.jmeter.NewDriver ©, Rating: 0% of 0, C3
Class: org.apache.axis.utils.URLHashSet ©, Rating: 0% of 0, C1
Class: org.apache.axis.wsdl.fromJava.Namespaces ©, Rating: 0% of 1, C2
Class: org.apache.catalina.cluster.tcp.ReplicationValve ©, Rating: 0% of 0, C1
75 public Entities (String stValue) throws IllegalArgumentException {
76 StringTokenizer tokenizer = new StringTokenizer(stValue);
77 int count = tokenizer.countTokens();
78 entities = new Entity[count];
79 for(int i=0;i<count;i++){
Class: org.apache.axis.types.NMTokens ©, Rating: 0% of 0, C1
078 public void setValue(String stValue) {
079 StringTokenizer tokenizer = new StringTokenizer(stValue);
080 int count = tokenizer.countTokens();
081 tokens = new NMToken[count];
082 for(int i=0;i<count;i++){
Class: org.apache.axis.types.IDRefs ©, Rating: 0% of 0, C1
079 public void setValue(String stValue) {
080 StringTokenizer tokenizer = new StringTokenizer(stValue);
081 int count = tokenizer.countTokens();
082 idrefs = new IDRef[count];
083 for(int i=0;i<count;i++){
Class: org.apache.batik.dom.svg.SystemIdTest ©, Rating: 0% of 0, C1
084
085 StringTokenizer st = new StringTokenizer(dtdids, "-");
086 int nIds = st.countTokens();
087 String missingIds = "";
088 for (int i=0; i<nIds; i++) {
jgoodies_forms Class: com.jgoodies.forms.layout.RowSpec ©, Rating: 0% of 0, C1
162
163 StringTokenizer tokenizer = new StringTokenizer(encodedRowSpecs, ", ");
164 int rowCount = tokenizer.countTokens();
165 RowSpec[] rowSpecs = new RowSpec[rowCount];
166 for (int i = 0; i < rowCount; i++) {
jgoodies_forms Class: com.jgoodies.forms.layout.ColumnSpec ©, Rating: 0% of 0, C1
172
173 StringTokenizer tokenizer = new StringTokenizer(encodedColumnSpecs, ", ");
174 int columnCount = tokenizer.countTokens();
175 ColumnSpec[] columnSpecs = new ColumnSpec[columnCount];
176 for (int i = 0; i < columnCount; i++) {
Class: org.apache.jmeter.NewDriver ©, Rating: 0% of 0, C3
048 //Find JMeter home dir
049 StringTokenizer tok = new StringTokenizer(cp, File.pathSeparator);
050 if (tok.countTokens() == 1)
051 {
052 File jar = new File(tok.nextToken());
Class: org.apache.axis.utils.URLHashSet ©, Rating: 0% of 0, C1
183 private static String[] tokenize(String str, String delim, boolean returnTokens) {
184 StringTokenizer tokenizer = new StringTokenizer(str, delim, returnTokens);
185 String[] tokens = new String[tokenizer.countTokens()];
186 int i = 0;
187 while (tokenizer.hasMoreTokens()) {
Class: org.apache.axis.wsdl.fromJava.Namespaces ©, Rating: 0% of 1, C2
206 return protocol + "://" + "DefaultNamespace";
207 StringTokenizer st = new StringTokenizer( packageName, "." );
208 String[] words = new String[ st.countTokens() ];
209 for(int i = 0; i < words.length; ++i)
210 words[i] = st.nextToken();
Class: org.apache.catalina.cluster.tcp.ReplicationValve ©, Rating: 0% of 0, C1
218 log.debug("Loading request filters="+filter);
219 java.util.StringTokenizer t = new java.util.StringTokenizer(filter,";");
220 this.reqFilters = new java.util.regex.Pattern[t.countTokens()];
221 int i = 0;
222 while ( t.hasMoreTokens() )