Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "CDO/Project Resources"

< CDO
(Sources)
(Miscellaneous)
Line 33: Line 33:
 
* View project statistics at [http://www.ohloh.net/projects/8908?p=CDO Ohloh]
 
* View project statistics at [http://www.ohloh.net/projects/8908?p=CDO Ohloh]
  
 +
<pre colorize="java"> private void initialize() {
 +
comments = getTaskData().getAttributeMapper().getAttributesByType(getTaskData(), TaskAttribute.TYPE_COMMENT);
 +
if (comments.size() > 0) {
 +
for (TaskAttribute commentAttribute : comments) {
 +
if (getModel().hasIncomingChanges(commentAttribute)) {
 +
hasIncoming = true;
 +
break;
 +
}
 +
}
 +
}
 +
}
 +
</pre>
  
 
----
 
----
 
Wikis: [[CDO]] | [[Net4j]] | [[EMF]] | [[Eclipse]]
 
Wikis: [[CDO]] | [[Net4j]] | [[EMF]] | [[Eclipse]]

Revision as of 15:52, 19 July 2008


Downloads


Sources


Documentation


Support and Feedback


Miscellaneous

  • View project statistics at Ohloh
	private void initialize() {
		comments = getTaskData().getAttributeMapper().getAttributesByType(getTaskData(), TaskAttribute.TYPE_COMMENT);
		if (comments.size() > 0) {
			for (TaskAttribute commentAttribute : comments) {
				if (getModel().hasIncomingChanges(commentAttribute)) {
					hasIncoming = true;
					break;
				}
			}
		}
	}

Wikis: CDO | Net4j | EMF | Eclipse

Back to the top