Search Results
OK to copy?
Examples 1 through 10 of
320 (0.0040 seconds)
Class:
com.technoetic.xplanner.domain.repository.MetaRepositoryImpl
©,
Rating:
0% of 0,
C1
Class: org.springframework.transaction.interceptor.MapTransactionAttributeSource ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.wiki.DomainObjectSchemeHandler ©, Rating: 0% of 0, C1
Class: org.springframework.aop.framework.MethodCounter ©, Rating: 0% of 0, C1
Class: org.springframework.aop.framework.MethodCounter ©, Rating: 0% of 0, C1
Class: org.apache.jmeter.protocol.http.util.DOMPool ©, Rating: 0% of 0, C1
Class: org.apache.axis.utils.IdentityHashMap ©, Rating: 0% of 0, C1
Class: org.apache.catalina.deploy.ContextTransaction ©, Rating: 0% of 0, C1
Class: org.apache.axis.components.net.TransportClientPropertiesFactory ©, Rating: 0% of 0, C2
Class: org.apache.axis.components.net.TransportClientPropertiesFactory ©, Rating: 0% of 0, C2
25
26 public ObjectRepository getRepository(Class objectClass) {
27 return (ObjectRepository)repositories.get(objectClass);
28 }
29
Class: org.springframework.transaction.interceptor.MapTransactionAttributeSource ©, Rating: 0% of 0, C1
57 private Collection doFindAllAttributes(Object what) {
58 //System.out.println("Trying key " + what);
59 Object att = attributeMap.get(what);
60 return att != null ? Collections.singleton(att) : null;
61 }
Class: com.technoetic.xplanner.wiki.DomainObjectSchemeHandler ©, Rating: 0% of 0, C1
32
33 public String translate(String scheme, String location, String linkText) {
34 Class domainClass = (Class)schemeClasses.get(scheme);
35 try {
36 Object object = ThreadSession.get().load(domainClass, new Integer(location));
Class: org.springframework.aop.framework.MethodCounter ©, Rating: 0% of 0, C1
45
46 public int getCalls(String methodName) {
47 Integer I = (Integer) map.get(methodName);
48 return (I != null) ? I.intValue() : 0;
49 }
Class: org.springframework.aop.framework.MethodCounter ©, Rating: 0% of 0, C1
38
39 protected void count(String methodName) {
40 Integer I = (Integer) map.get(methodName);
41 I = (I != null) ? new Integer(I.intValue() + 1) : new Integer(1);
42 map.put(methodName, I);
Class: org.apache.jmeter.protocol.http.util.DOMPool ©, Rating: 0% of 0, C1
56 public static Document getDocument(Object key)
57 {
58 return (Document) MEMCACHE.get(key);
59 }
60
Class: org.apache.axis.utils.IdentityHashMap ©, Rating: 0% of 0, C1
Class: org.apache.catalina.deploy.ContextTransaction ©, Rating: 0% of 0, C1
Class: org.apache.axis.components.net.TransportClientPropertiesFactory ©, Rating: 0% of 0, C2
83
84 if (tcp == null) {
85 tcp = (TransportClientProperties)
86 AxisProperties.newInstance(TransportClientProperties.class,
87 (Class)defaults.get(protocol));
Class: org.apache.axis.components.net.TransportClientPropertiesFactory ©, Rating: 0% of 0, C2
79 public static TransportClientProperties create(String protocol)
80 {
81 TransportClientProperties tcp =
82 (TransportClientProperties)cache.get(protocol);
83