You are viewing a plain text version of this content. The canonical link for it is here.
Posted to kato-commits@incubator.apache.org by sp...@apache.org on 2009/07/31 09:21:40 UTC

svn commit: r799557 - in /incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.hexeditor.plugin: .classpath META-INF/MANIFEST.MF src/main/java/org/apache/kato/tools/plugins/hexeditor/editors/MultiPageEditorContributor.java

Author: spoole
Date: Fri Jul 31 09:21:40 2009
New Revision: 799557

URL: http://svn.apache.org/viewvc?rev=799557&view=rev
Log:
updated eclipse project to use javax.tools.diagnostics API

Modified:
    incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.hexeditor.plugin/.classpath
    incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.hexeditor.plugin/META-INF/MANIFEST.MF
    incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.hexeditor.plugin/src/main/java/org/apache/kato/tools/plugins/hexeditor/editors/MultiPageEditorContributor.java

Modified: incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.hexeditor.plugin/.classpath
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.hexeditor.plugin/.classpath?rev=799557&r1=799556&r2=799557&view=diff
==============================================================================
--- incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.hexeditor.plugin/.classpath (original)
+++ incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.hexeditor.plugin/.classpath Fri Jul 31 09:21:40 2009
@@ -1,11 +1,11 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<classpath>
-	<classpathentry kind="src" output="target/classes" path="src/main/java"/>
-	<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources"/>
-	<classpathentry kind="src" output="target/test-classes" path="src/test/java"/>
-	<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources"/>
-	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
-	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
-	<classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
-
-</classpath>
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<classpathentry kind="src" output="target/classes" path="src/main/java"/>
+	<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources"/>
+	<classpathentry kind="src" output="target/test-classes" path="src/test/java"/>
+	<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources"/>
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
+	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
+	<classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
+	<classpathentry kind="output" path="target/classes"/>
+</classpath>

Modified: incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.hexeditor.plugin/META-INF/MANIFEST.MF
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.hexeditor.plugin/META-INF/MANIFEST.MF?rev=799557&r1=799556&r2=799557&view=diff
==============================================================================
--- incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.hexeditor.plugin/META-INF/MANIFEST.MF (original)
+++ incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.hexeditor.plugin/META-INF/MANIFEST.MF Fri Jul 31 09:21:40 2009
@@ -8,8 +8,8 @@
 Require-Bundle: org.eclipse.ui,
  org.eclipse.core.runtime,
  org.eclipse.core.resources,
- org.eclipse.ui.ide;bundle-version="3.4.2",
- org.eclipse.ui.editors;bundle-version="3.4.0"
+ org.eclipse.ui.ide,
+ org.eclipse.ui.editors
 Bundle-RequiredExecutionEnvironment: JavaSE-1.6
 Bundle-ActivationPolicy: lazy
 Bundle-Vendor: Apache Software Foundation

Modified: incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.hexeditor.plugin/src/main/java/org/apache/kato/tools/plugins/hexeditor/editors/MultiPageEditorContributor.java
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.hexeditor.plugin/src/main/java/org/apache/kato/tools/plugins/hexeditor/editors/MultiPageEditorContributor.java?rev=799557&r1=799556&r2=799557&view=diff
==============================================================================
--- incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.hexeditor.plugin/src/main/java/org/apache/kato/tools/plugins/hexeditor/editors/MultiPageEditorContributor.java (original)
+++ incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.hexeditor.plugin/src/main/java/org/apache/kato/tools/plugins/hexeditor/editors/MultiPageEditorContributor.java Fri Jul 31 09:21:40 2009
@@ -13,7 +13,12 @@
  ******************************************************************************/
 package org.apache.kato.tools.plugins.hexeditor.editors;
 
-import org.eclipse.jface.action.*;
+import org.eclipse.jface.action.Action;
+import org.eclipse.jface.action.IAction;
+import org.eclipse.jface.action.IMenuManager;
+import org.eclipse.jface.action.IToolBarManager;
+import org.eclipse.jface.action.MenuManager;
+import org.eclipse.jface.action.Separator;
 import org.eclipse.jface.dialogs.MessageDialog;
 import org.eclipse.ui.IActionBars;
 import org.eclipse.ui.IEditorPart;