Search Results
OK to copy?
Examples 41 through 50 of
1017 (0.198 seconds)
Class:
org.springframework.jdbc.support.GeneratedKeyHolder
©,
Rating:
0% of 0,
C2
Class: com.technoetic.xplanner.charts.PieChartPostProcessor ©, Rating: 0% of 0, C2
Class: org.springframework.aop.support.IntroductionInfoSupport ©, Rating: 0% of 0, C2
Class: org.springframework.ui.context.support.ResourceBundleThemeSource ©, Rating: 0% of 0, C1
Class: org.apache.tools.ant.util.CompositeMapper ©, Rating: 0% of 0, C2
Class: org.apache.jmeter.engine.ConvertListeners ©, Rating: 0% of 0, C3
Class: com.technoetic.xplanner.actions.EditStoryAction ©, Rating: 0% of 0, C1
Class: org.springframework.transaction.interceptor.RuleBasedTransactionAttribute ©, Rating: 0% of 0, C2
Class: org.springframework.transaction.interceptor.RuleBasedTransactionAttribute ©, Rating: 0% of 0, C2
Class: org.springframework.transaction.interceptor.RuleBasedTransactionAttribute ©, Rating: 0% of 0, C2
65 }
66 Iterator keyIter = ((Map) this.keyList.get(0)).values().iterator();
67 if (keyIter.hasNext()) {
68 Object key = keyIter.next();
69 if (!(key instanceof Number)) {
Class: com.technoetic.xplanner.charts.PieChartPostProcessor ©, Rating: 0% of 0, C2
54 PiePlot plot = (PiePlot)((JFreeChart)chart).getPlot();
55 setPlotDefaults(plot);
56 for (Iterator iterator = parameters.keySet().iterator(); iterator.hasNext();) {
57 String key = (String)iterator.next();
58 if (key.equals("border.color")) {
Class: org.springframework.aop.support.IntroductionInfoSupport ©, Rating: 0% of 0, C2
067 */
068 public boolean implementsInterface(Class intf) {
069 for (Iterator it = this.publishedInterfaces.iterator(); it.hasNext();) {
070 Class pubIntf = (Class) it.next();
071 if (intf.isInterface() && intf.isAssignableFrom(pubIntf)) {
Class: org.springframework.ui.context.support.ResourceBundleThemeSource ©, Rating: 0% of 0, C1
052 this.parentThemeSource = parent;
053 Iterator it = this.themes.values().iterator();
054 while (it.hasNext()) {
055 initParent((Theme) it.next());
056 }
Class: org.apache.tools.ant.util.CompositeMapper ©, Rating: 0% of 0, C2
32
33 FileNameMapper mapper = null;
34 for (Iterator mIter = getMappers().iterator(); mIter.hasNext();) {
35 mapper = (FileNameMapper)(mIter.next());
36 if (mapper != null) {
Class: org.apache.jmeter.engine.ConvertListeners ©, Rating: 0% of 0, C3
053 }
054 Iterator iter = subTree.list().iterator();
055 while (iter.hasNext())
056 {
057 Object item = iter.next();
Class: com.technoetic.xplanner.actions.EditStoryAction ©, Rating: 0% of 0, C1
59 Integer.toString(story.getId()) + "\n\n" + continuedStory.getDescription()));
60 Iterator taskIterator = story.getTasks().iterator();
61 while (taskIterator.hasNext()) {
62 Task task = (Task)taskIterator.next();
63 if (!task.isCompleted()) {
Class: org.springframework.transaction.interceptor.RuleBasedTransactionAttribute ©, Rating: 0% of 0, C2
109 rules.add(sign + rule.getExceptionName());
110 }
111 for (Iterator it = rules.iterator(); it.hasNext();) {
112 result.append(',');
113 result.append(it.next());
Class: org.springframework.transaction.interceptor.RuleBasedTransactionAttribute ©, Rating: 0% of 0, C2
104 StringBuffer result = getDefinitionDescription();
105 TreeSet rules = new TreeSet();
106 for (Iterator it = rollbackRules.iterator(); it.hasNext();) {
107 RollbackRuleAttribute rule = (RollbackRuleAttribute) it.next();
108 String sign = (rule instanceof NoRollbackRuleAttribute) ? COMMIT_RULE_PREFIX : ROLLBACK_RULE_PREFIX;
Class: org.springframework.transaction.interceptor.RuleBasedTransactionAttribute ©, Rating: 0% of 0, C2
077
078 if (this.rollbackRules != null) {
079 for (Iterator it = this.rollbackRules.iterator(); it.hasNext();) {
080 RollbackRuleAttribute rule = (RollbackRuleAttribute) it.next();
081 int depth = rule.getDepth(ex);