Search Results
OK to copy?
Examples 1 through 10 of
61 (0.023 seconds)
Class:
com.technoetic.xplanner.metrics.UserStoryMetrics
©,
Rating:
0% of 0,
C1
Class: com.technoetic.xplanner.metrics.UserStoryMetrics ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.metrics.UserStoryMetrics ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.metrics.UserStoryMetrics ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.metrics.IterationMetrics ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.metrics.IterationMetrics ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.metrics.IterationMetrics ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.metrics.IterationMetrics ©, Rating: 0% of 0, C1
Class: org.apache.axis.configuration.SimpleProvider ©, Rating: 0% of 0, C1
Class: org.apache.axis.configuration.SimpleProvider ©, Rating: 0% of 0, C1
205 public double getMaxAcceptedTime() {
206 double maxAcceptedTime = 0;
207 Iterator itr = developerMetrics.values().iterator();
208 while (itr.hasNext()) {
209 double hours = ((DeveloperMetrics)itr.next()).getAcceptedHours();
Class: com.technoetic.xplanner.metrics.UserStoryMetrics ©, Rating: 0% of 0, C1
190
191 public Collection getDeveloperAcceptedTime() {
192 ArrayList metrics = new ArrayList(developerMetrics.values());
193 Collections.sort(metrics, new Comparator() {
194 public int compare(Object object1, Object object2) {
Class: com.technoetic.xplanner.metrics.UserStoryMetrics ©, Rating: 0% of 0, C1
179 public double getMaxTotalTime() {
180 double maxTotalTime = 0;
181 Iterator itr = developerMetrics.values().iterator();
182 while (itr.hasNext()) {
183 double hours = ((DeveloperMetrics)itr.next()).getHours();
Class: com.technoetic.xplanner.metrics.UserStoryMetrics ©, Rating: 0% of 0, C1
166
167 public Collection getDeveloperTotalTime() {
168 ArrayList metrics = new ArrayList(developerMetrics.values());
169 Collections.sort(metrics, new Comparator() {
170 public int compare(Object object1, Object object2) {
Class: com.technoetic.xplanner.metrics.IterationMetrics ©, Rating: 0% of 0, C1
199 public double getMaxAcceptedTime() {
200 double maxAcceptedTime = 0;
201 Iterator itr = developerMetrics.values().iterator();
202 while (itr.hasNext()) {
203 double hours = ((DeveloperMetrics)itr.next()).getAcceptedHours();
Class: com.technoetic.xplanner.metrics.IterationMetrics ©, Rating: 0% of 0, C1
183
184 public Collection getDeveloperAcceptedTime() {
185 ArrayList metrics = new ArrayList(developerMetrics.values());
186 Collections.sort(metrics,
187 new Comparator() {
Class: com.technoetic.xplanner.metrics.IterationMetrics ©, Rating: 0% of 0, C1
172 public double getMaxTotalTime() {
173 double maxTotalTime = 0;
174 Iterator itr = developerMetrics.values().iterator();
175 while (itr.hasNext()) {
176 double hours = ((DeveloperMetrics)itr.next()).getHours();
Class: com.technoetic.xplanner.metrics.IterationMetrics ©, Rating: 0% of 0, C1
156
157 public Collection getDeveloperTotalTime() {
158 ArrayList metrics = new ArrayList(developerMetrics.values());
159 Collections.sort(metrics,
160 new Comparator() {
Class: org.apache.axis.configuration.SimpleProvider ©, Rating: 0% of 0, C1
266 public Iterator getDeployedServices() throws ConfigurationException {
267 ArrayList serviceDescs = new ArrayList();
268 Iterator i = services.values().iterator();
269 while (i.hasNext()) {
270 SOAPService service = (SOAPService)i.next();
Class: org.apache.axis.configuration.SimpleProvider ©, Rating: 0% of 0, C1
130 defaultConfiguration.configureEngine(engine);
131
132 for (Iterator i = services.values().iterator(); i.hasNext(); ) {
133 ((SOAPService)i.next()).setEngine(engine);
134 }