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 166572 Details for
Bug 279728
[Layout] Connectors to SVG shapes go through shapes with zoom != 100%
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 fix API Tooling issues
GEF_UI_API_FILTERS (text/plain), 4.63 KB, created by
Alex Boyko
on 2010-04-29 17:01:05 EDT
(
hide
)
Description:
patch to fix API Tooling issues
Filename:
MIME Type:
Creator:
Alex Boyko
Created:
2010-04-29 17:01:05 EDT
Size:
4.63 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.gmf.runtime.gef.ui >Index: META-INF/MANIFEST.MF >=================================================================== >RCS file: /cvsroot/modeling/org.eclipse.gmf/plugins/org.eclipse.gmf.runtime.gef.ui/META-INF/MANIFEST.MF,v >retrieving revision 1.19 >diff -u -r1.19 MANIFEST.MF >--- META-INF/MANIFEST.MF 13 Nov 2008 02:36:31 -0000 1.19 >+++ META-INF/MANIFEST.MF 29 Apr 2010 20:56:34 -0000 >@@ -2,7 +2,7 @@ > Bundle-ManifestVersion: 2 > Bundle-Name: %Plugin.name > Bundle-SymbolicName: org.eclipse.gmf.runtime.gef.ui >-Bundle-Version: 1.2.0.qualifier >+Bundle-Version: 1.4.0.qualifier > Bundle-Activator: org.eclipse.gmf.runtime.gef.ui.internal.GefPlugin > Bundle-Vendor: %Plugin.providerName > Bundle-Localization: plugin >@@ -20,7 +20,7 @@ > org.eclipse.gmf.runtime.gef.ui.internal.tools;x-friends:="org.eclipse.gmf.tests.runtime.diagram.ui,org.eclipse.gmf.tests.runtime.gef.ui,org.eclipse.gmf.runtime.diagram.ui,org.eclipse.gmf.runtime.diagram.ui.render,org.eclipse.gmf.runtime.diagram.ui.providers", > org.eclipse.gmf.runtime.gef.ui.palette.customize > Require-Bundle: org.eclipse.ui;bundle-version="[3.5.0,4.0.0)", >- org.eclipse.draw2d;bundle-version="[3.5.0,4.0.0)";visibility:=reexport, >+ org.eclipse.draw2d;bundle-version="[3.6.0,4.0.0)";visibility:=reexport, > org.eclipse.gef;bundle-version="[3.5.0,4.0.0)", > org.eclipse.core.runtime;bundle-version="[3.5.0,4.0.0)", > org.eclipse.gmf.runtime.common.core;bundle-version="[1.2.0,2.0.0)", >Index: src/org/eclipse/gmf/runtime/gef/ui/figures/SlidableImageAnchor.java >=================================================================== >RCS file: /cvsroot/modeling/org.eclipse.gmf/plugins/org.eclipse.gmf.runtime.gef.ui/src/org/eclipse/gmf/runtime/gef/ui/figures/SlidableImageAnchor.java,v >retrieving revision 1.7 >diff -u -r1.7 SlidableImageAnchor.java >--- src/org/eclipse/gmf/runtime/gef/ui/figures/SlidableImageAnchor.java 28 Apr 2010 15:03:09 -0000 1.7 >+++ src/org/eclipse/gmf/runtime/gef/ui/figures/SlidableImageAnchor.java 29 Apr 2010 20:56:34 -0000 >@@ -19,6 +19,7 @@ > import org.eclipse.draw2d.IFigure; > import org.eclipse.draw2d.IImageFigure; > import org.eclipse.draw2d.IImageFigure.ImageChangedListener; >+import org.eclipse.draw2d.ImageFigure; > import org.eclipse.draw2d.geometry.Dimension; > import org.eclipse.draw2d.geometry.Point; > import org.eclipse.draw2d.geometry.PointList; >@@ -262,16 +263,29 @@ > } > > /** >- * Default constructor, for which reference point is at the cneter of the figure >+ * Default constructor, for which reference point is at the center of the figure > * > * @param container the <code>IFigure</code> bounding figure > * @param imageFig the <code>ImageFigure</code> inside the bounding figure >+ * @since 1.4 > */ > public SlidableImageAnchor(IFigure container, IImageFigure imageFig) { > super(container); > this.imageFig = imageFig; > } > >+ /** >+ * Default constructor, for which reference point is at the center of the figure >+ * >+ * @param container the <code>IFigure</code> bounding figure >+ * @param imageFig the <code>ImageFigure</code> inside the bounding figure >+ * @deprecated use {@link #SlidableImageAnchor(IFigure, IImageFigure)} instead >+ */ >+ public SlidableImageAnchor(IFigure container, ImageFigure imageFig) { >+ this(container); >+ this.imageFig = imageFig; >+ } >+ > @Override > public void addAnchorListener(AnchorListener listener) { > if (listener == null) >@@ -294,8 +308,9 @@ > * Constructor, for which reference point is specified > * > * @param f the <code>IFigure</code> bounding figure >- * @param imageFig the <code>ImageFigure</code> inside the bounding figure >+ * @param imageFig the <code>IImageFigure</code> inside the bounding figure > * @param p the <code>PrecisionPoint</code> relative reference >+ * @since 1.4 > */ > public SlidableImageAnchor(IFigure f, IImageFigure imageFig, PrecisionPoint p) { > super(f, p); >@@ -303,6 +318,19 @@ > } > > /** >+ * Constructor, for which reference point is specified >+ * >+ * @param f the <code>IFigure</code> bounding figure >+ * @param imageFig the <code>ImageFigure</code> inside the bounding figure >+ * @param p the <code>PrecisionPoint</code> relative reference >+ * @deprecated use {@link #SlidableImageAnchor(IFigure, IImageFigure, PrecisionPoint)} instead >+ */ >+ public SlidableImageAnchor(IFigure f, ImageFigure imageFig, PrecisionPoint p) { >+ super(f, p); >+ this.imageFig = imageFig; >+ } >+ >+ /** > * Returns the image. > * > * @return the <code>Image</code> object >@@ -347,6 +375,9 @@ > return null; > } > >+ /** >+ * @since 1.4 >+ */ > public void imageChanged() { > fireAnchorMoved(); > }
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 279728
:
138739
|
138750
|
138834
|
166538
| 166572