### Eclipse Workspace Patch 1.0 #P org.eclipse.ve.swt Index: ve_swt/org/eclipse/ve/internal/rcp/WorkbenchPartProxyAdapter.java =================================================================== RCS file: /cvsroot/tools/org.eclipse.ve.swt/ve_swt/org/eclipse/ve/internal/rcp/WorkbenchPartProxyAdapter.java,v retrieving revision 1.6 diff -u -r1.6 WorkbenchPartProxyAdapter.java --- ve_swt/org/eclipse/ve/internal/rcp/WorkbenchPartProxyAdapter.java 17 May 2006 20:15:54 -0000 1.6 +++ ve_swt/org/eclipse/ve/internal/rcp/WorkbenchPartProxyAdapter.java 23 May 2008 20:30:22 -0000 @@ -26,7 +26,6 @@ import org.eclipse.swt.graphics.ImageData; import org.eclipse.ui.IWorkbenchPreferenceConstants; import org.eclipse.ui.PlatformUI; -import org.eclipse.ui.internal.IPreferenceConstants; import org.eclipse.ui.internal.WorkbenchPlugin; import org.eclipse.jem.internal.instantiation.base.IJavaInstance; @@ -160,7 +159,7 @@ // Tab style (square or rounded) boolean traditionalTabStyle = PlatformUI.getPreferenceStore().getBoolean(IWorkbenchPreferenceConstants.SHOW_TRADITIONAL_STYLE_TABS); // Tab location (top or bottom) - int tabPosition = WorkbenchPlugin.getDefault().getPreferenceStore().getInt(IPreferenceConstants.VIEW_TAB_POSITION); + int tabPosition = WorkbenchPlugin.getDefault().getPreferenceStore().getInt(IWorkbenchPreferenceConstants.VIEW_TAB_POSITION); IProxy ffParent = ffHost.add(false, expression); #P org.eclipse.ve.jfc Index: vm_jfcbeaninfo/org/eclipse/ve/internal/jfc/beaninfo/AbstractBorderPropertyPage.java =================================================================== RCS file: /cvsroot/tools/org.eclipse.ve.jfc/vm_jfcbeaninfo/org/eclipse/ve/internal/jfc/beaninfo/AbstractBorderPropertyPage.java,v retrieving revision 1.3 diff -u -r1.3 AbstractBorderPropertyPage.java --- vm_jfcbeaninfo/org/eclipse/ve/internal/jfc/beaninfo/AbstractBorderPropertyPage.java 24 Aug 2005 23:38:11 -0000 1.3 +++ vm_jfcbeaninfo/org/eclipse/ve/internal/jfc/beaninfo/AbstractBorderPropertyPage.java 23 May 2008 20:30:23 -0000 @@ -20,6 +20,11 @@ +/** + * + */ + private static final long serialVersionUID = -5503489435066594295L; + // called to initialize gui when added to the editor public abstract void buildPropertyPage(); #P org.eclipse.ve.java.core Index: core/org/eclipse/ve/internal/java/vce/launcher/JavaBeanLaunchConfigurationDelegate.java =================================================================== RCS file: /cvsroot/tools/org.eclipse.ve.java.core/core/org/eclipse/ve/internal/java/vce/launcher/JavaBeanLaunchConfigurationDelegate.java,v retrieving revision 1.24 diff -u -r1.24 JavaBeanLaunchConfigurationDelegate.java --- core/org/eclipse/ve/internal/java/vce/launcher/JavaBeanLaunchConfigurationDelegate.java 14 Dec 2005 21:33:30 -0000 1.24 +++ core/org/eclipse/ve/internal/java/vce/launcher/JavaBeanLaunchConfigurationDelegate.java 23 May 2008 20:30:26 -0000 @@ -36,7 +36,6 @@ import org.eclipse.jface.resource.JFaceResources; import org.eclipse.ui.IWorkbenchPreferenceConstants; import org.eclipse.ui.PlatformUI; -import org.eclipse.ui.internal.IPreferenceConstants; import org.eclipse.ui.internal.WorkbenchPlugin; import org.eclipse.jem.internal.proxy.core.*; @@ -160,7 +159,7 @@ setupClasspath(configuration, args); // Add IDE preferences to the argument buffer for use on the VM. - int fTabPosition = WorkbenchPlugin.getDefault().getPreferenceStore().getInt(IPreferenceConstants.VIEW_TAB_POSITION); + int fTabPosition = WorkbenchPlugin.getDefault().getPreferenceStore().getInt(IWorkbenchPreferenceConstants.VIEW_TAB_POSITION); boolean fTraditionalTabs = PlatformUI.getPreferenceStore().getBoolean(IWorkbenchPreferenceConstants.SHOW_TRADITIONAL_STYLE_TABS); String activeLinkColor = JFaceResources.getColorRegistry().getRGB(JFacePreferences.ACTIVE_HYPERLINK_COLOR).toString(); String errorColor = JFaceResources.getColorRegistry().getRGB(JFacePreferences.ERROR_COLOR).toString(); Index: codegen/org/eclipse/ve/internal/java/codegen/editorpart/JavaVisualEditorActionContributor.java =================================================================== RCS file: /cvsroot/tools/org.eclipse.ve.java.core/codegen/org/eclipse/ve/internal/java/codegen/editorpart/JavaVisualEditorActionContributor.java,v retrieving revision 1.15 diff -u -r1.15 JavaVisualEditorActionContributor.java --- codegen/org/eclipse/ve/internal/java/codegen/editorpart/JavaVisualEditorActionContributor.java 15 Nov 2005 21:48:50 -0000 1.15 +++ codegen/org/eclipse/ve/internal/java/codegen/editorpart/JavaVisualEditorActionContributor.java 23 May 2008 20:30:24 -0000 @@ -15,18 +15,14 @@ */ import org.eclipse.gef.ui.actions.*; -import org.eclipse.gef.ui.actions.UndoRetargetAction; import org.eclipse.jdt.internal.ui.javaeditor.CompilationUnitEditorActionContributor; import org.eclipse.jface.action.*; import org.eclipse.ui.*; import org.eclipse.ui.actions.*; -import org.eclipse.ui.actions.LabelRetargetAction; -import org.eclipse.ui.actions.RetargetAction; import org.eclipse.ui.texteditor.*; +import org.eclipse.ui.texteditor.StatusLineContributionItem; import org.eclipse.ve.internal.cde.core.*; -import org.eclipse.ve.internal.cde.core.CDEPlugin; -import org.eclipse.ve.internal.cde.core.MenuCreatorRetargetAction; import org.eclipse.ve.internal.java.core.CustomizeJavaBeanAction; import org.eclipse.ve.internal.java.core.JavaVEPlugin;