Search Results
OK to copy?
Examples 1 through 10 of
295 (0.855 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: 100% of 1, C1
Class: org.apache.batik.dom.svg.SystemIdTest ©, Rating: 100% of 1, C1
Class: org.apache.webapp.admin.SetUpTreeAction ©, Rating: 0% of 0, C2
jgoodies_forms Class: com.jgoodies.forms.layout.RowSpec ©, Rating: 0% of 0, C1
Class: org.apache.tomcat.util.http.AcceptLanguage ©, Rating: 0% of 0, C2
jgoodies_forms Class: com.jgoodies.forms.layout.ColumnSpec ©, Rating: 0% of 0, C1
Class: org.apache.axis.handlers.SimpleAuthorizationHandler ©, Rating: 0% of 0, C3
Class: org.apache.jmeter.NewDriver ©, Rating: 0% of 0, C3
78 entities = new Entity[count];
79 for(int i=0;i<count;i++){
80 entities[i] = new Entity(tokenizer.nextToken());
81 }
82 }
Class: org.apache.axis.types.NMTokens ©, Rating: 0% of 0, C1
081 tokens = new NMToken[count];
082 for(int i=0;i<count;i++){
083 tokens[i] = new NMToken(tokenizer.nextToken());
084 }
085 }
Class: org.apache.axis.types.IDRefs ©, Rating: 100% of 1, C1
082 idrefs = new IDRef[count];
083 for(int i=0;i<count;i++){
084 idrefs[i] = new IDRef(tokenizer.nextToken());
085 }
086 }
Class: org.apache.batik.dom.svg.SystemIdTest ©, Rating: 100% of 1, C1
087 String missingIds = "";
088 for (int i=0; i<nIds; i++) {
089 String publicId = st.nextToken();
090 publicId = "-" + publicId.trim();
091 System.out.println("Testing public id: " + publicId);
Class: org.apache.webapp.admin.SetUpTreeAction ©, Rating: 0% of 0, C2
111 StringTokenizer st = new StringTokenizer(treeBuildersStr, ",");
112 while (st.hasMoreTokens()) {
113 treeBuilders.add(st.nextToken().trim());
114 }
115
jgoodies_forms Class: com.jgoodies.forms.layout.RowSpec ©, Rating: 0% of 0, C1
165 RowSpec[] rowSpecs = new RowSpec[rowCount];
166 for (int i = 0; i < rowCount; i++) {
167 rowSpecs[i] = new RowSpec(tokenizer.nextToken());
168 }
169 return rowSpecs;
Class: org.apache.tomcat.util.http.AcceptLanguage ©, Rating: 0% of 0, C2
081
082 while (languageTokenizer.hasMoreTokens()) {
083 String language = languageTokenizer.nextToken().trim();
084 int qValueIndex = language.indexOf(';');
085 int qIndex = language.indexOf('q');
jgoodies_forms Class: com.jgoodies.forms.layout.ColumnSpec ©, Rating: 0% of 0, C1
175 ColumnSpec[] columnSpecs = new ColumnSpec[columnCount];
176 for (int i = 0; i < columnCount; i++) {
177 columnSpecs[i] = new ColumnSpec(tokenizer.nextToken());
178 }
179 return columnSpecs;
Class: org.apache.axis.handlers.SimpleAuthorizationHandler ©, Rating: 0% of 0, C3
145 StringTokenizer st = new StringTokenizer(allowedRoles, ",");
146 while (st.hasMoreTokens()) {
147 String thisRole = st.nextToken();
148 if (provider.userMatches(user, thisRole)) {
149
Class: org.apache.jmeter.NewDriver ©, Rating: 0% of 0, C3