Search Results
OK to copy?
Examples 1 through 10 of
504 (0.0060 seconds)
Class:
com.technoetic.xplanner.tags.IterationOptionsTag
©,
Rating:
0% of 0,
C1
Class: com.technoetic.xplanner.tags.StoryOptionsTag ©, Rating: 100% of 1, C1
Class: com.technoetic.xplanner.db.IterationQueryHelper ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.tags.AuthenticatedUserTag ©, Rating: 0% of 0, C2
Class: org.apache.jmeter.control.RandomController ©, Rating: 0% of 0, C1
Class: org.apache.jmeter.control.RandomController ©, Rating: 0% of 0, C1
Class: org.apache.jmeter.control.RandomController ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.domain.repository.IterationRepository ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.charts.PieChartQuery ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.domain.repository.UserStoryRepository ©, Rating: 0% of 0, C1
17 List iterations = dao.fetchEditableIterations();
18 List options = new ArrayList();
19 for (int i = 0; i < iterations.size(); i++)
20 {
21 Iteration it = (Iteration) iterations.get(i);
Class: com.technoetic.xplanner.tags.StoryOptionsTag ©, Rating: 100% of 1, C1
19 List stories = userStoryRepository.fetchEditableStories();
20 List options = new ArrayList();
21 for (int i = 0; i < stories.size(); i++) {
22 UserStory s = (UserStory) stories.get(i);
23 options.add(new StoryModel(new IterationModel(userStoryRepository.getIteration(s)), s));
Class: com.technoetic.xplanner.db.IterationQueryHelper ©, Rating: 0% of 0, C1
21 new Object[]{ new Integer(projectId), now },
22 new Type[] { Hibernate.INTEGER, Hibernate.DATE });
23 return (results.size() > 0) ? (Iteration)results.get(0) : null;
24 } catch (Exception e) {
25 log.error("error", e);
Class: com.technoetic.xplanner.tags.AuthenticatedUserTag ©, Rating: 0% of 0, C2
22 setCacheable(true).
23 list();
24 if (users.size() > 0) {
25 pageContext.setAttribute(id, users.get(0));
26 }
Class: org.apache.jmeter.control.RandomController ©, Rating: 0% of 0, C1
55 {
56 super.incrementCurrent();
57 current = rand.nextInt(this.getSubControllers().size());
58 }
59
Class: org.apache.jmeter.control.RandomController ©, Rating: 0% of 0, C1
41 if (getSubControllers().size() > 0)
42 {
43 current = rand.nextInt(this.getSubControllers().size());
44 }
45 else
Class: org.apache.jmeter.control.RandomController ©, Rating: 0% of 0, C1
39 protected void resetCurrent()
40 {
41 if (getSubControllers().size() > 0)
42 {
43 current = rand.nextInt(this.getSubControllers().size());
Class: com.technoetic.xplanner.domain.repository.IterationRepository ©, Rating: 0% of 0, C1
35 List allIterations = getSession().find(EDITABLE_ITERATIONS_QUERY_STRING);
36 List acceptedIterations = new ArrayList();
37 for (int i = 0; i < allIterations.size(); i++) {
38 Iteration it = (Iteration)allIterations.get(i);
39 if (accept(it)) {
Class: com.technoetic.xplanner.charts.PieChartQuery ©, Rating: 0% of 0, C1
26 }
27 DefaultPieDataset data = new DefaultPieDataset();
28 for (int i = 0; i < results.size(); i++) {
29 Object[] objects = (Object[])results.get(i);
30 data.setValue(getLabel(objects), getCount(objects));
Class: com.technoetic.xplanner.domain.repository.UserStoryRepository ©, Rating: 0% of 0, C1
39 List allStories = getSession().find(EDITABLE_ITERATIONS_QUERY_STRING);
40 List acceptedStories = new ArrayList();
41 for (int i = 0; i < allStories.size(); i++) {
42 UserStory it = (UserStory) allStories.get(i);
43 if (accept(it)) {