Search Results
OK to copy?
Examples 1 through 10 of
314 (0.013999999999999999 seconds)
Class:
com.technoetic.xplanner.domain.RelationshipMapping
©,
Rating:
0% of 0,
C1
jgoodies_binding Class: com.jgoodies.binding.tests.value.CloningValueHolder ©, 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: com.technoetic.xplanner.domain.repository.HibernateObjectRepository ©, Rating: 0% of 0, C1
jgoodies_animation Class: com.jgoodies.animation.tutorial.component.AlphaConverter ©, Rating: 0% of 0, C1
Class: org.apache.tools.ant.taskdefs.SendEmail ©, Rating: 0% of 0, C1
Class: org.apache.batik.svggen.SVGIDGenerator ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.domain.repository.RepositorySecurityAdapter ©, Rating: 0% of 0, C1
Class: org.apache.tools.ant.types.FlexInteger ©, Rating: 0% of 0, C1
39
40 private Object findObjectById(Session session, Class aClass, Integer id) throws HibernateException {
41 if (id.intValue() == 0) return null;
42 return session.load(aClass, id);
43 }
jgoodies_binding Class: com.jgoodies.binding.tests.value.CloningValueHolder ©, Rating: 0% of 0, C1
52 return new String((String) value);
53 } else if (value instanceof Integer) {
54 return new Integer(((Integer) value).intValue());
55 }
56 return value;
Class: org.springframework.aop.framework.MethodCounter ©, Rating: 0% of 0, C1
46 public int getCalls(String methodName) {
47 Integer I = (Integer) map.get(methodName);
48 return (I != null) ? I.intValue() : 0;
49 }
50
Class: org.springframework.aop.framework.MethodCounter ©, Rating: 0% of 0, C1
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);
43 ++allCount;
Class: com.technoetic.xplanner.domain.repository.HibernateObjectRepository ©, Rating: 0% of 0, C1
46 public int insert(Object object) throws RepositoryException {
47 try {
48 return ((Integer)ThreadSession.get().save(object)).intValue();
49 } catch (RuntimeException ex) {
50 throw ex;
jgoodies_animation Class: com.jgoodies.animation.tutorial.component.AlphaConverter ©, Rating: 0% of 0, C1
81 */
82 public void setValue(Object newValue) {
83 int alpha = ((Integer) newValue).intValue();
84 Color oldColor = (Color) subject.getValue();
85 subject.setValue(new Color(oldColor.getRed(), oldColor.getGreen(), oldColor.getBlue(), alpha));
Class: org.apache.tools.ant.taskdefs.SendEmail ©, Rating: 0% of 0, C1
Class: org.apache.batik.svggen.SVGIDGenerator ©, Rating: 0% of 0, C1
82 }
83
84 maxId = new Integer(maxId.intValue()+1);
85 prefixMap.put(prefix, maxId);
86 return prefix + maxId;
Class: com.technoetic.xplanner.domain.repository.RepositorySecurityAdapter ©, Rating: 0% of 0, C1
53 try {
54 context.populate(object);
55 int objectIdentifier = ((Integer)PropertyUtils.getProperty(object, "id")).intValue();
56 if (!SystemAuthorizer.get().hasPermission(context.getProjectId(),
57 SecurityHelper.getRemoteUserId(ThreadServletRequest.get()), object, permission)) {
Class: org.apache.tools.ant.types.FlexInteger ©, Rating: 0% of 0, C1