Search Results
OK to copy?
Examples 1 through 10 of
1430 (0.148 seconds)
Class:
com.technoetic.xplanner.tags.displaytag.PersonIdDecorator
©,
Rating:
0% of 0,
C1
Class: com.technoetic.xplanner.db.IdSearchHelper ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.db.IterationQueryHelper ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.tags.IterationModel ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.file.FileTest ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.domain.RelationshipMapping ©, Rating: 0% of 0, C1
jgoodies_binding Class: com.jgoodies.binding.tests.value.ValueHolderWithOldValueNull ©, Rating: 0% of 0, C1
jgoodies_binding Class: com.jgoodies.binding.tests.value.ValueHolderWithOldAndNewValueNull ©, Rating: 0% of 0, C1
jgoodies_binding Class: com.jgoodies.binding.tests.value.ValueHolderWithNewValueNull ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.domain.repository.IterationRepository ©, Rating: 0% of 0, C1
14 private static Person getPerson(int id) {
15 try {
16 return (Person) ThreadSession.get().get(Person.class, new Integer(id));
17 } catch (HibernateException e) {
18 return null;
Class: com.technoetic.xplanner.db.IdSearchHelper ©, Rating: 0% of 0, C1
21
22 public Object search() throws HibernateException {
23 final Integer id = new Integer(oid);
24 for (int i = 0; i < searchedDomainClasses.length; i++) {
25 try {
Class: com.technoetic.xplanner.db.IterationQueryHelper ©, Rating: 0% of 0, C1
17 Date now = new Date(System.currentTimeMillis());
18 try {
19 List results = ThreadSession.get().find("from iteration in "+Iteration.class+
20 " where iteration.projectId = ? and ? between iteration.startDate and iteration.endDate",
21 new Object[]{ new Integer(projectId), now },
Class: com.technoetic.xplanner.tags.IterationModel ©, Rating: 0% of 0, C1
24 protected Project getProject() {
25 try {
26 return (Project)ThreadSession.get().load((Project.class), new Integer(iteration.getProjectId()));
27 } catch (HibernateException e) {
28 throw new RuntimeException(e);
Class: com.technoetic.xplanner.file.FileTest ©, Rating: 0% of 0, C1
24 // Directory d2 = mkdir(session, "d2a", d1);
25 // Directory d3 = mkdir(session, "d2b", d1);
26 Directory d2 = (Directory)session.load(Directory.class, new Integer(29));
27 createFile(session, d2, "test-"+System.currentTimeMillis()+".txt");
28 }
Class: com.technoetic.xplanner.domain.RelationshipMapping ©, Rating: 0% of 0, C1
47 InvocationTargetException {
48 Object referred = PropertyUtils.getProperty(domainObject, domainProperty);
49 Integer id = referred == null ?
50 new Integer(0) : (Integer)PropertyUtils.getProperty(referred, "id");
51 PropertyUtils.setProperty(adapter, adapterProperty, id);
jgoodies_binding Class: com.jgoodies.binding.tests.value.ValueHolderWithOldValueNull ©, Rating: 0% of 0, C1
51
52 public ValueHolderWithOldValueNull(int initialValue) {
53 this(new Integer(initialValue));
54 }
55
jgoodies_binding Class: com.jgoodies.binding.tests.value.ValueHolderWithOldAndNewValueNull ©, Rating: 0% of 0, C1
52
53 public ValueHolderWithOldAndNewValueNull(int initialValue) {
54 this(new Integer(initialValue));
55 }
56
jgoodies_binding Class: com.jgoodies.binding.tests.value.ValueHolderWithNewValueNull ©, Rating: 0% of 0, C1
51
52 public ValueHolderWithNewValueNull(int initialValue) {
53 this(new Integer(initialValue));
54 }
55
Class: com.technoetic.xplanner.domain.repository.IterationRepository ©, Rating: 0% of 0, C1
50
51 public Iteration getIterationForStory(UserStory story) throws HibernateException {
52 return (Iteration) session.load(Iteration.class,new Integer(story.getIterationId()));
53 }
54