Search Results
OK to copy?
Examples 81 through 90 of
627 (0.0040 seconds)
Class:
org.apache.tools.ant.util.facade.FacadeTaskHelper
©,
Rating:
0% of 0,
C1
Class: org.apache.tools.ant.util.facade.FacadeTaskHelper ©, Rating: 0% of 0, C1
Class: org.apache.tools.ant.types.Description ©, Rating: 0% of 0, C2
Class: org.apache.tools.ant.types.Description ©, Rating: 0% of 0, C1
Class: org.apache.axis.SimpleChain ©, Rating: 0% of 0, C2
Class: org.apache.axis.SimpleChain ©, Rating: 0% of 0, C1
Class: org.apache.axis.SimpleChain ©, Rating: 0% of 0, C1
Class: org.apache.axis.SimpleChain ©, Rating: 0% of 0, C1
Class: org.apache.axis.SimpleChain ©, Rating: 0% of 0, C2
Class: org.apache.axis.SimpleChain ©, Rating: 0% of 0, C1
Class: org.apache.tools.ant.util.facade.FacadeTaskHelper ©, Rating: 0% of 0, C1
113 */
114 public String[] getArgs() {
115 Vector tmp = new Vector(args.size());
116 for (Enumeration e = args.elements(); e.hasMoreElements();) {
117 ImplementationSpecificArgument arg =
Class: org.apache.tools.ant.types.Description ©, Rating: 0% of 0, C2
092 return;
093 }
094 for (int i = 0; i < tasks.size(); i++) {
095 Task task = (Task) tasks.elementAt(i);
096 if (!(task instanceof UnknownElement)) {
Class: org.apache.tools.ant.types.Description ©, Rating: 0% of 0, C1
076 StringBuffer description = new StringBuffer();
077 Vector targets = (Vector) project.getReference("ant.targets");
078 for (int i = 0; i < targets.size(); i++) {
079 Target t = (Target) targets.elementAt(i);
080 concatDescriptions(project, t, description);
Class: org.apache.axis.SimpleChain ©, Rating: 0% of 0, C2
232 StringBuffer str = new StringBuffer();
233 int i = 0;
234 while (i < handlers.size()) {
235 if ( i != 0 ) str.append(",");
236 Handler h = (Handler) handlers.elementAt(i);
Class: org.apache.axis.SimpleChain ©, Rating: 0% of 0, C1
218 return null;
219
220 Handler [] ret = new Handler[handlers.size()];
221 return( (Handler[]) handlers.toArray(ret) );
222 }
Class: org.apache.axis.SimpleChain ©, Rating: 0% of 0, C1
Class: org.apache.axis.SimpleChain ©, Rating: 0% of 0, C1
190
191 public boolean canHandleBlock(QName qname) {
192 for ( int i = 0 ; i < handlers.size() ; i++ )
193 if ( ((Handler) handlers.elementAt( i )).canHandleBlock(qname) )
194 return( true );
Class: org.apache.axis.SimpleChain ©, Rating: 0% of 0, C2
181 }
182
183 for ( int i = handlers.size()-1 ; i >= 0 ; i-- )
184 ((Handler) handlers.elementAt( i )).onFault( msgContext );
185
Class: org.apache.axis.SimpleChain ©, Rating: 0% of 0, C1
097
098 public void cleanup() {
099 for ( int i = 0 ; i < handlers.size() ; i++ )
100 ((Handler) handlers.elementAt( i )).cleanup();
101 }