diff options
author | rsuen | 2007-03-31 21:18:59 +0000 |
---|---|---|
committer | rsuen | 2007-03-31 21:18:59 +0000 |
commit | 623fa7b6a17fc52dd32c9dcbf77b04f17627c98d (patch) | |
tree | 86fa3fabd1b414b227e1a71f59f16363ed954626 /incubation/bundles | |
parent | e17b74b079d149b2d689e92cdc22ecd4bb906560 (diff) | |
download | org.eclipse.ecf-623fa7b6a17fc52dd32c9dcbf77b04f17627c98d.tar.gz org.eclipse.ecf-623fa7b6a17fc52dd32c9dcbf77b04f17627c98d.tar.xz org.eclipse.ecf-623fa7b6a17fc52dd32c9dcbf77b04f17627c98d.zip |
Downsize the required execution environment to CDC-1.0/Foundation-1.0.
Diffstat (limited to 'incubation/bundles')
4 files changed, 10 insertions, 8 deletions
diff --git a/incubation/bundles/org.eclipse.ecf.bulletinboard/.classpath b/incubation/bundles/org.eclipse.ecf.bulletinboard/.classpath index d494b005a..270eb0379 100644 --- a/incubation/bundles/org.eclipse.ecf.bulletinboard/.classpath +++ b/incubation/bundles/org.eclipse.ecf.bulletinboard/.classpath @@ -2,6 +2,6 @@ <classpath> <classpathentry kind="src" path="src"/> <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/> - <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/CDC-1.1%Foundation-1.1"/> + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/CDC-1.0%Foundation-1.0"/> <classpathentry kind="output" path="target/classes"/> </classpath> diff --git a/incubation/bundles/org.eclipse.ecf.bulletinboard/.settings/org.eclipse.jdt.core.prefs b/incubation/bundles/org.eclipse.ecf.bulletinboard/.settings/org.eclipse.jdt.core.prefs index f355674d2..a9e686229 100644 --- a/incubation/bundles/org.eclipse.ecf.bulletinboard/.settings/org.eclipse.jdt.core.prefs +++ b/incubation/bundles/org.eclipse.ecf.bulletinboard/.settings/org.eclipse.jdt.core.prefs @@ -1,9 +1,9 @@ -#Thu Mar 15 13:07:05 GMT-08:00 2007 +#Sat Mar 31 17:07:51 GMT 2007 eclipse.preferences.version=1 org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=disabled -org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.2 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.1 org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve -org.eclipse.jdt.core.compiler.compliance=1.4 +org.eclipse.jdt.core.compiler.compliance=1.3 org.eclipse.jdt.core.compiler.debug.lineNumber=generate org.eclipse.jdt.core.compiler.debug.localVariable=generate org.eclipse.jdt.core.compiler.debug.sourceFile=generate diff --git a/incubation/bundles/org.eclipse.ecf.bulletinboard/META-INF/MANIFEST.MF b/incubation/bundles/org.eclipse.ecf.bulletinboard/META-INF/MANIFEST.MF index 36428d09f..8f5e54b6e 100644 --- a/incubation/bundles/org.eclipse.ecf.bulletinboard/META-INF/MANIFEST.MF +++ b/incubation/bundles/org.eclipse.ecf.bulletinboard/META-INF/MANIFEST.MF @@ -11,6 +11,6 @@ Require-Bundle: org.eclipse.ecf, Eclipse-LazyStart: true Export-Package: org.eclipse.ecf.bulletinboard, org.eclipse.ecf.internal.bulletinboard;x-internal:=true -Bundle-RequiredExecutionEnvironment: CDC-1.1/Foundation-1.1, - J2SE-1.4 +Bundle-RequiredExecutionEnvironment: CDC-1.0/Foundation-1.0, + J2SE-1.3 Import-Package: org.osgi.framework;version="1.4.0" diff --git a/incubation/bundles/org.eclipse.ecf.bulletinboard/src/org/eclipse/ecf/bulletinboard/BBException.java b/incubation/bundles/org.eclipse.ecf.bulletinboard/src/org/eclipse/ecf/bulletinboard/BBException.java index 57cc78a56..b5b1b9567 100644 --- a/incubation/bundles/org.eclipse.ecf.bulletinboard/src/org/eclipse/ecf/bulletinboard/BBException.java +++ b/incubation/bundles/org.eclipse.ecf.bulletinboard/src/org/eclipse/ecf/bulletinboard/BBException.java @@ -10,13 +10,15 @@ *******************************************************************************/ package org.eclipse.ecf.bulletinboard; +import org.eclipse.ecf.core.util.ECFException; + /** * The base class for all exceptions thrown by the BB API. * * @author Erkki */ -public class BBException extends Exception { - private static final long serialVersionUID = -1739222507295443443L; +public class BBException extends ECFException { + private static final long serialVersionUID = -650452331534579859L; public BBException() { super(); |