Search Results
OK to copy?
Examples 1 through 10 of
179 (0.0020 seconds)
Class:
com.technoetic.xplanner.db.StoryQueryHelper
©,
Rating:
0% of 0,
C1
Class: com.technoetic.xplanner.db.hibernate.XPlannerInterceptor ©, Rating: 0% of 0, C1
Class: org.apache.tools.ant.taskdefs.optional.ccm.CCMCheckin ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.charts.DataSamplingJob ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.charts.DataSamplingJob ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.domain.repository.RepositoryHistoryAdapter ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.actions.EditTaskAction ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.actions.EditTaskAction ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.actions.EditTaskAction ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.actions.EditTaskAction ©, Rating: 0% of 0, C1
33 private Collection bindAndExecuteQuery(String queryName) throws DatabaseQueryException {
34 try {
35 return ThreadSession.get().getNamedQuery(queryName).
36 setInteger("personId", personId).setDate("date", new Date()).list();
37 } catch (HibernateException e) {
Class: com.technoetic.xplanner.db.hibernate.XPlannerInterceptor ©, Rating: 0% of 0, C1
27 for (int i = 0; i < propertyNames.length; i++) {
28 if (LAST_UPDATE_TIME.equals(propertyNames[i])) {
29 state[i] = new Date();
30 return true;
31 }
Class: org.apache.tools.ant.taskdefs.optional.ccm.CCMCheckin ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.charts.DataSamplingJob ©, Rating: 0% of 0, C1
24 List iterations = session.find("from i in " + Iteration.class +
25 " where i.endDate >= ?", new Date(), Hibernate.DATE);
26 Date now = new Date();
27 for (int i = 0; i < iterations.size(); i++) {
28 Iteration iteration = (Iteration)iterations.get(i);
Class: com.technoetic.xplanner.charts.DataSamplingJob ©, Rating: 0% of 0, C1
22 try {
23 session = GlobalSessionFactory.get().openSession();
24 List iterations = session.find("from i in " + Iteration.class +
25 " where i.endDate >= ?", new Date(), Hibernate.DATE);
26 Date now = new Date();
Class: com.technoetic.xplanner.domain.repository.RepositoryHistoryAdapter ©, Rating: 0% of 0, C1
38 private HistoricalEvent saveHistoryEvent(Object object, String eventType, String description) throws RepositoryException {
39 try {
40 return HistorySupport.saveEvent(ThreadSession.get(), object, eventType,
41 description, SecurityHelper.getRemoteUserId(ThreadServletRequest.get()), new Date());
42 } catch (RuntimeException e) {
Class: com.technoetic.xplanner.actions.EditTaskAction ©, Rating: 0% of 0, C1
77 "task.continued.from",
78 Integer.toString(task.getId()) + "\n\n" + continuedTask.getDescription()));
79 HistorySupport.saveEvent(
80 session,
81 continuedTask,
Class: com.technoetic.xplanner.actions.EditTaskAction ©, Rating: 0% of 0, C1
66 session.save(continuedTask);
67 TARGET_STORY_ID_MAPPING.populateDomainObject(continuedTask, form);
68 continuedTask.setCreatedDate(new Date());
69 continuedTask.setEstimatedHours(task.getEstimatedHours() - task.getActualHours());
70 continuedTask.setTimeEntries(null);
Class: com.technoetic.xplanner.actions.EditTaskAction ©, Rating: 0% of 0, C1
47 //TODO: Jacques Morel: Why the need for a targetStoryId? Can't we just use storyId?
48 TARGET_STORY_ID_MAPPING.populateDomainObject(task, taskForm);
49 HistorySupport.saveEvent(
50 session,
51 task,
Class: com.technoetic.xplanner.actions.EditTaskAction ©, Rating: 0% of 0, C1
37 if (StringUtils.equals(operation, "continue")) {
38 continueTask(request, session, task, taskForm);
39 HistorySupport.saveEvent(
40 session,
41 task,