Search Results
OK to copy?
Examples 1 through 10 of
229 (0.015 seconds)
Class:
jsp2.examples.simpletag.EchoAttributesTag
©,
Rating:
0% of 0,
C1
Class: jsp2.examples.simpletag.EchoAttributesTag ©, Rating: 0% of 0, C1
Class: org.apache.catalina.launcher.CatalinaLaunchFilter ©, Rating: 0% of 0, C2
Class: com.technoetic.xplanner.forms.AbstractEditorForm ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.forms.AbstractEditorForm ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.forms.RoleEditorForm ©, Rating: 0% of 0, C1
Class: org.apache.axis.description.FaultDesc ©, Rating: 0% of 0, C1
Class: org.apache.webapp.admin.SetUpTreeAction ©, Rating: 0% of 0, C2
Class: org.apache.webapp.admin.SetUpTreeAction ©, Rating: 0% of 0, C2
Class: org.apache.catalina.cluster.mcast.McastMembership ©, Rating: 0% of 0, C2
38 public void doTag() throws JspException, IOException {
39 JspWriter out = getJspContext().getOut();
40 for( int i = 0; i < keys.size(); i++ ) {
41 String key = (String)keys.get( i );
42 Object value = values.get( i );
Class: jsp2.examples.simpletag.EchoAttributesTag ©, Rating: 0% of 0, C1
38 public void doTag() throws JspException, IOException {
39 JspWriter out = getJspContext().getOut();
40 for( int i = 0; i < keys.size(); i++ ) {
41 String key = (String)keys.get( i );
42 Object value = values.get( i );
Class: org.apache.catalina.launcher.CatalinaLaunchFilter ©, Rating: 0% of 0, C2
61 boolean waitForChild = launchCommand.getWaitforchild();
62 ArrayList argsList = launchCommand.getArgs();
63 String[] args = (String[])argsList.toArray(new String[argsList.size()]);
64
65 // Evaluate main class
Class: com.technoetic.xplanner.forms.AbstractEditorForm ©, Rating: 0% of 0, C1
115 protected void ensureSize(ArrayList list, int size) {
116 if (size > list.size()) {
117 for (int i = list.size(); i < size; i++) {
118 list.add(null);
119 }
Class: com.technoetic.xplanner.forms.AbstractEditorForm ©, Rating: 0% of 0, C1
114
115 protected void ensureSize(ArrayList list, int size) {
116 if (size > list.size()) {
117 for (int i = list.size(); i < size; i++) {
118 list.add(null);
Class: com.technoetic.xplanner.forms.RoleEditorForm ©, Rating: 0% of 0, C1
033 /* Renvoi du nombre de personnes concern?es par le projet*/
034 public int getPersonCount() {
035 return personIds.size();
036 }
037
Class: org.apache.axis.description.FaultDesc ©, Rating: 0% of 0, C1
149 text+= indent + "type: " + getXmlType() + "\n";
150 text+= indent + "Class: " + getClassName() + "\n";
151 for (int i=0; parameters != null && i < parameters.size(); i++) {
152 text+= indent +" ParameterDesc[" + i + "]:\n";
153 text+= indent + ((ParameterDesc)parameters.get(i)).toString(" ") + "\n";
Class: org.apache.webapp.admin.SetUpTreeAction ©, Rating: 0% of 0, C2
117 treeBuilders.add(treeBuildersStr.trim());
118
119 for(i = 0; i < treeBuilders.size(); i++) {
120
121 try{
Class: org.apache.webapp.admin.SetUpTreeAction ©, Rating: 0% of 0, C2
Class: org.apache.catalina.cluster.mcast.McastMembership ©, Rating: 0% of 0, C2
100 }//end if
101 }//while
102 McastMember[] result = new McastMember[list.size()];
103 list.toArray(result);
104 for ( int j=0; j<result.length; j++) map.remove(result[j].getName());