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:20:20 UTC

svn commit: r799554 - in /incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.registry.plugin: .settings/ src/main/java/org/apache/kato/api/plugin/ src/main/java/org/apache/kato/api/plugin/preferences/

Author: spoole
Date: Fri Jul 31 09:20:20 2009
New Revision: 799554

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

Modified:
    incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.registry.plugin/.settings/org.eclipse.jdt.core.prefs
    incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.registry.plugin/src/main/java/org/apache/kato/api/plugin/Activator.java
    incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.registry.plugin/src/main/java/org/apache/kato/api/plugin/preferences/RegisteredFactoriesFieldEditor.java

Modified: incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.registry.plugin/.settings/org.eclipse.jdt.core.prefs
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.registry.plugin/.settings/org.eclipse.jdt.core.prefs?rev=799554&r1=799553&r2=799554&view=diff
==============================================================================
--- incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.registry.plugin/.settings/org.eclipse.jdt.core.prefs (original)
+++ incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.registry.plugin/.settings/org.eclipse.jdt.core.prefs Fri Jul 31 09:20:20 2009
@@ -1,12 +1,12 @@
-#Fri Jun 26 10:46:52 BST 2009
-eclipse.preferences.version=1
-org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
-org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
-org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
-org.eclipse.jdt.core.compiler.compliance=1.6
-org.eclipse.jdt.core.compiler.debug.lineNumber=generate
-org.eclipse.jdt.core.compiler.debug.localVariable=generate
-org.eclipse.jdt.core.compiler.debug.sourceFile=generate
-org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
-org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
-org.eclipse.jdt.core.compiler.source=1.6
+#Fri Jul 31 10:12:28 BST 2009
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
+org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
+org.eclipse.jdt.core.compiler.compliance=1.6
+org.eclipse.jdt.core.compiler.debug.lineNumber=generate
+org.eclipse.jdt.core.compiler.debug.localVariable=generate
+org.eclipse.jdt.core.compiler.debug.sourceFile=generate
+org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
+org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
+org.eclipse.jdt.core.compiler.source=1.6

Modified: incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.registry.plugin/src/main/java/org/apache/kato/api/plugin/Activator.java
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.registry.plugin/src/main/java/org/apache/kato/api/plugin/Activator.java?rev=799554&r1=799553&r2=799554&view=diff
==============================================================================
--- incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.registry.plugin/src/main/java/org/apache/kato/api/plugin/Activator.java (original)
+++ incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.registry.plugin/src/main/java/org/apache/kato/api/plugin/Activator.java Fri Jul 31 09:20:20 2009
@@ -3,16 +3,13 @@
 import java.io.File;
 import java.io.IOException;
 
-import org.apache.kato.FactoryRegistry;
-import org.apache.kato.image.Image;
-import org.apache.kato.image.ImageFactory;
+import javax.tools.diagnostics.FactoryRegistry;
+import javax.tools.diagnostics.image.Image;
+import javax.tools.diagnostics.image.ImageFactory;
+
 import org.eclipse.core.runtime.CoreException;
 import org.eclipse.core.runtime.IConfigurationElement;
-import org.eclipse.core.runtime.IExtension;
-import org.eclipse.core.runtime.IExtensionPoint;
-import org.eclipse.core.runtime.IExtensionRegistry;
 import org.eclipse.core.runtime.Platform;
-import org.eclipse.core.runtime.content.IContentType;
 import org.eclipse.jface.resource.ImageDescriptor;
 import org.eclipse.ui.plugin.AbstractUIPlugin;
 import org.osgi.framework.BundleContext;

Modified: incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.registry.plugin/src/main/java/org/apache/kato/api/plugin/preferences/RegisteredFactoriesFieldEditor.java
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.registry.plugin/src/main/java/org/apache/kato/api/plugin/preferences/RegisteredFactoriesFieldEditor.java?rev=799554&r1=799553&r2=799554&view=diff
==============================================================================
--- incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.registry.plugin/src/main/java/org/apache/kato/api/plugin/preferences/RegisteredFactoriesFieldEditor.java (original)
+++ incubator/kato/trunk/org.apache.kato.eclipse/plugins/kato.api.registry.plugin/src/main/java/org/apache/kato/api/plugin/preferences/RegisteredFactoriesFieldEditor.java Fri Jul 31 09:20:20 2009
@@ -2,8 +2,9 @@
 
 
 
+import javax.tools.diagnostics.image.ImageFactory;
+
 import org.apache.kato.api.plugin.Activator;
-import org.apache.kato.image.ImageFactory;
 import org.eclipse.jface.preference.FieldEditor;
 import org.eclipse.swt.SWT;
 import org.eclipse.swt.layout.GridData;