Search Results
OK to copy?
Examples 61 through 70 of
320 (0.0030 seconds)
Class:
org.apache.axis.wsdl.fromJava.Namespaces
©,
Rating:
0% of 0,
C1
Class: org.apache.axis.wsdl.fromJava.Namespaces ©, Rating: 0% of 0, C1
Class: org.apache.axis.wsdl.fromJava.Namespaces ©, Rating: 0% of 0, C1
Class: org.apache.axis.wsdl.fromJava.Namespaces ©, Rating: 0% of 0, C1
Class: org.apache.jmeter.visualizers.MonitorAccumModel ©, Rating: 0% of 0, C1
Class: org.apache.jmeter.visualizers.MonitorAccumModel ©, Rating: 0% of 0, C1
Class: org.apache.jmeter.visualizers.MonitorAccumModel ©, Rating: 0% of 0, C1
Class: org.apache.jmeter.visualizers.MonitorAccumModel ©, Rating: 0% of 0, C1
Class: org.apache.jasper.compiler.TagPluginManager ©, Rating: 0% of 0, C1
Class: org.apache.jasper.compiler.TagPluginManager ©, Rating: 0% of 0, C1
145 namespacePrefixMap.put(namespace, "tns" + prefixCount++);
146 }
147 return (String)namespacePrefixMap.get(namespace);
148 }
149
Class: org.apache.axis.wsdl.fromJava.Namespaces ©, Rating: 0% of 0, C1
142 */
143 public String getCreatePrefix(String namespace) {
144 if (namespacePrefixMap.get(namespace) == null) {
145 namespacePrefixMap.put(namespace, "tns" + prefixCount++);
146 }
Class: org.apache.axis.wsdl.fromJava.Namespaces ©, Rating: 0% of 0, C1
097 */
098 public String getCreate(String key, String prefix) {
099 Object value = super.get(key);
100 if (value == null) {
101 value = makeNamespaceFromPackageName(key);
Class: org.apache.axis.wsdl.fromJava.Namespaces ©, Rating: 0% of 0, C1
081 */
082 public String getCreate(String key) {
083 Object value = super.get(key);
084 if (value == null) {
085 value = makeNamespaceFromPackageName(key);
Class: org.apache.jmeter.visualizers.MonitorAccumModel ©, Rating: 0% of 0, C1
202 Iterator itr = this.MAP.keySet().iterator();
203 while (itr.hasNext()){
204 List lt = (List)this.MAP.get(itr.next());
205 lt.clear();
206 }
Class: org.apache.jmeter.visualizers.MonitorAccumModel ©, Rating: 0% of 0, C1
114 public MonitorModel getSample(String url){
115 if (MAP.containsKey(url)){
116 ArrayList list = (ArrayList)MAP.get(url);
117 return (MonitorModel)list.get(0);
118 } else {
Class: org.apache.jmeter.visualizers.MonitorAccumModel ©, Rating: 0% of 0, C1
103 return Collections.synchronizedList(new LinkedList());
104 } else {
105 return (List)MAP.get(url);
106 }
107 }
Class: org.apache.jmeter.visualizers.MonitorAccumModel ©, Rating: 0% of 0, C1
070 //this.CURRENT = model;
071 if (MAP.containsKey(model.getURL())){
072 List newlist = updateArray(model,(List)MAP.get(model.getURL()));
073 MAP.put(model.getURL(),newlist);
074 } else {
Class: org.apache.jasper.compiler.TagPluginManager ©, Rating: 0% of 0, C1
124 */
125 private void invokePlugin(Node.CustomTag n) {
126 TagPlugin tagPlugin = (TagPlugin)
127 tagPlugins.get(n.getTagHandlerClass().getName());
128 if (tagPlugin == null) {
Class: org.apache.jasper.compiler.TagPluginManager ©, Rating: 0% of 0, C1
165
166 public Object getPluginAttribute(String key) {
167 return pluginAttributes.get(key);
168 }
169