From: <bh...@us...> - 2007-12-06 22:22:51
|
Revision: 553 http://cishell.svn.sourceforge.net/cishell/?rev=553&view=rev Author: bh2 Date: 2007-12-06 14:22:25 -0800 (Thu, 06 Dec 2007) Log Message: ----------- Added osgi api jars to the framework project so we can javadoc the framework without dependencies on outside jars. Modified Paths: -------------- trunk/core/org.cishell.framework/javadoc.xml Added Paths: ----------- trunk/core/org.cishell.framework/lib/ trunk/core/org.cishell.framework/lib/osgi.compendium.jar trunk/core/org.cishell.framework/lib/osgi.core.jar Modified: trunk/core/org.cishell.framework/javadoc.xml =================================================================== --- trunk/core/org.cishell.framework/javadoc.xml 2007-12-06 20:07:54 UTC (rev 552) +++ trunk/core/org.cishell.framework/javadoc.xml 2007-12-06 22:22:25 UTC (rev 553) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <project default="javadoc"> <target name="javadoc"> - <javadoc destdir="bin/doc" access="public" source="1.4" use="true" notree="false" nonavbar="false" noindex="false" splitindex="true" author="true" version="true" nodeprecatedlist="false" nodeprecated="false" packagenames="org.cishell.framework.data,org.cishell.service.guibuilder,org.cishell.app.service.scheduler,org.cishell.framework,org.cishell.app.service.datamanager,org.cishell.framework.algorithm,org.cishell.service.conversion" sourcepath="src" classpath="/data1/bherr/bin/eclipse/plugins/org.eclipse.osgi_3.2.0.v20060601.jar:/data1/bherr/bin/eclipse/plugins/org.eclipse.equinox.preferences_3.2.0.v20060601.jar:/data1/bherr/bin/eclipse/plugins/org.eclipse.osgi.services_3.1.100.v20060601.jar" overview="/home/bherr/workspace/org.cishell.framework/src/org/cishell/overview.html" doctitle="CIShell: Cyberinfrastructure Shell v0.5.0 API"> + <javadoc destdir="bin/doc" access="public" source="1.4" use="true" notree="false" nonavbar="false" noindex="false" splitindex="true" author="true" version="true" nodeprecatedlist="false" nodeprecated="false" packagenames="org.cishell.framework.data,org.cishell.service.guibuilder,org.cishell.app.service.scheduler,org.cishell.framework,org.cishell.app.service.datamanager,org.cishell.framework.algorithm,org.cishell.service.conversion" sourcepath="src" classpath="lib/osgi.core.jar:lib/osgi.compendium.jar" overview="/home/bherr/workspace/org.cishell.framework/src/org/cishell/overview.html" doctitle="CIShell: Cyberinfrastructure Shell v0.5.0 API"> <link href="http://bundles.osgi.org/javadoc/r4/"/> <link href="http://java.sun.com/j2se/1.4.2/docs/api/"/> </javadoc> Added: trunk/core/org.cishell.framework/lib/osgi.compendium.jar =================================================================== (Binary files differ) Property changes on: trunk/core/org.cishell.framework/lib/osgi.compendium.jar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/core/org.cishell.framework/lib/osgi.core.jar =================================================================== (Binary files differ) Property changes on: trunk/core/org.cishell.framework/lib/osgi.core.jar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <mwl...@us...> - 2008-02-13 15:14:23
|
Revision: 624 http://cishell.svn.sourceforge.net/cishell/?rev=624&view=rev Author: mwlinnem Date: 2008-02-13 07:14:14 -0800 (Wed, 13 Feb 2008) Log Message: ----------- Added preference property info for things related to preference service. Modified Paths: -------------- trunk/core/org.cishell.framework/META-INF/MANIFEST.MF Added Paths: ----------- trunk/core/org.cishell.framework/src/org/cishell/framework/preference/ trunk/core/org.cishell.framework/src/org/cishell/framework/preference/PreferenceProperty.java Modified: trunk/core/org.cishell.framework/META-INF/MANIFEST.MF =================================================================== --- trunk/core/org.cishell.framework/META-INF/MANIFEST.MF 2008-02-12 17:51:18 UTC (rev 623) +++ trunk/core/org.cishell.framework/META-INF/MANIFEST.MF 2008-02-13 15:14:14 UTC (rev 624) @@ -14,6 +14,7 @@ org.cishell.framework, org.cishell.framework.algorithm, org.cishell.framework.data, + org.cishell.framework.preference, org.cishell.service.conversion, org.cishell.service.guibuilder Eclipse-LazyStart: true Added: trunk/core/org.cishell.framework/src/org/cishell/framework/preference/PreferenceProperty.java =================================================================== --- trunk/core/org.cishell.framework/src/org/cishell/framework/preference/PreferenceProperty.java (rev 0) +++ trunk/core/org.cishell.framework/src/org/cishell/framework/preference/PreferenceProperty.java 2008-02-13 15:14:14 UTC (rev 624) @@ -0,0 +1,53 @@ +/* **************************************************************************** + * CIShell: Cyberinfrastructure Shell, An Algorithm Integration Framework. + * + * All rights reserved. This program and the accompanying materials are made + * available under the terms of the Apache License v2.0 which accompanies + * this distribution, and is available at: + * http://www.apache.org/licenses/LICENSE-2.0.html + * + * Created on Feb 8, 2008 at Indiana University. + * + * Contributors: + * Indiana University - + * ***************************************************************************/ +package org.cishell.framework.preference; + +public interface PreferenceProperty { + + //used to override the default id of the local preference OCD + public static final String LOCAL_PREF_PID = "local_pref_pid"; + //used to override the default ids of the global preference OCDs + public static final String GLOBAL_PREF_PID = "global_pref_pid"; + +// //set to true in a service's properties if you want the CIShell preference service to look for local preferences in your METADATA.XML file +// //In addition to the described behavior, setting this to true will also cause the same behavior as setting 'receive prefs' to true. +// public static final String PUBLISH_LOCAL_PREFS_KEY = "publish_local_prefs"; +// //set to true in a service's properties if you want the CIShell preference service to look for global preferences in your METADATA.XML file +// public static final String PUBLISH_GLOBAL_PREF_KEY = "publish_global_prefs"; +// //set to true in a service's properties if you want to are not publishing local preferences, but still want to receive global preference info +// public static final String RECEIVE_PREFS_KEY = "receive_prefs"; +// //set to true if you want the default values of your parameters to be changeable in the preferences menu +// public static final String PUBLISH_PARAM_DEFAULT_PREFS_KEY = "publish_param_prefs"; + + public static final String PREFS_PUBLISHED_KEY = "prefs_published"; + public static final String PUBLISH_LOCAL_PREF_VALUE = "local"; + public static final String PUBLISH_GLOBAL_PREF_VALUE = "global"; + public static final String PUBLISH_PARAM_DEFAULT_PREF_VALUE = "param-defaults"; + + public static final String RECEIVE_PREFS_KEY = "receive_prefs"; + + //by default, OCDs with the ID `service.pid` + `one of these suffixes` will be treated as the OCD for the OCD type that corresponds to the suffix. + + public static final String LOCAL_PREFS_OCD_SUFFIX = ".prefs.local"; //with or without digit (>=2) on end + public static final String GLOBAL_PREFS_OCD_SUFFIX = ".prefs.global"; //with or without digit ( >= 2) on end + public static final String PARAM_PREFS_OCD_SUFFIX = ""; + + public static final String LOCAL_PREFS_CONF_SUFFIX = ""; + public static final String GLOBAL_PREFS_CONF_SUFFIX = GLOBAL_PREFS_OCD_SUFFIX; + public static final String PARAM_PREFS_CONF_SUFFIX = ".prefs.params"; + + //used to remember what bundle version a preference configuration object corresponds to + //the same as OSGi one. + public static final String BUNDLE_VERSION_KEY = "Bundle-Version"; +} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |