Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 74469 Details for
Bug 173597
GEF Editor Undo Error
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
Patch to remove error in Flow Example Activity.java
patch.txt (text/plain), 946 bytes, created by
Matt Scarpino
on 2007-07-24 10:46:06 EDT
(
hide
)
Description:
Patch to remove error in Flow Example Activity.java
Filename:
MIME Type:
Creator:
Matt Scarpino
Created:
2007-07-24 10:46:06 EDT
Size:
946 bytes
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.gef.examples.flow >Index: src/org/eclipse/gef/examples/flow/model/Activity.java >=================================================================== >RCS file: /cvsroot/tools/org.eclipse.gef/examples/org.eclipse.gef.examples.flow/src/org/eclipse/gef/examples/flow/model/Activity.java,v >retrieving revision 1.7 >diff -u -r1.7 Activity.java >--- src/org/eclipse/gef/examples/flow/model/Activity.java 30 Mar 2005 21:27:30 -0000 1.7 >+++ src/org/eclipse/gef/examples/flow/model/Activity.java 24 Jul 2007 14:35:16 -0000 >@@ -40,11 +40,15 @@ > } > > public void addInput(Transition transition) { >+ if (inputs.contains(transition)) >+ return; > inputs.add(transition); > fireStructureChange(INPUTS, transition); > } > > public void addOutput(Transition transtition) { >+ if (outputs.contains(transtition)) >+ return; > outputs.add(transtition); > fireStructureChange(OUTPUTS, transtition); > }
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 173597
:
58744
|
74469