Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2008-02-06 08:30:49 +0000
committerslewis2008-02-06 08:30:49 +0000
commita1053a30d1e87832828ceb41254319517fc45ab6 (patch)
tree2b80b31d74652b02bd39889612a6aa688cddc783 /server-side/examples/bundles
parent0aa2e9f4e55321b9388210e5772d2ceab2a6c747 (diff)
downloadorg.eclipse.ecf-a1053a30d1e87832828ceb41254319517fc45ab6.tar.gz
org.eclipse.ecf-a1053a30d1e87832828ceb41254319517fc45ab6.tar.xz
org.eclipse.ecf-a1053a30d1e87832828ceb41254319517fc45ab6.zip
Added IRemoteEnvironmentinfo service and removed concat service.
Diffstat (limited to 'server-side/examples/bundles')
-rw-r--r--server-side/examples/bundles/org.eclipse.ecf.examples.remoteservices.common/src/org/eclipse/ecf/examples/remoteservices/common/IConcatService.java21
-rw-r--r--server-side/examples/bundles/org.eclipse.ecf.examples.remoteservices.common/src/org/eclipse/ecf/examples/remoteservices/common/IRemoteEnvironmentInfo.java114
2 files changed, 114 insertions, 21 deletions
diff --git a/server-side/examples/bundles/org.eclipse.ecf.examples.remoteservices.common/src/org/eclipse/ecf/examples/remoteservices/common/IConcatService.java b/server-side/examples/bundles/org.eclipse.ecf.examples.remoteservices.common/src/org/eclipse/ecf/examples/remoteservices/common/IConcatService.java
deleted file mode 100644
index f8302045c..000000000
--- a/server-side/examples/bundles/org.eclipse.ecf.examples.remoteservices.common/src/org/eclipse/ecf/examples/remoteservices/common/IConcatService.java
+++ /dev/null
@@ -1,21 +0,0 @@
-/****************************************************************************
- * Copyright (c) 2008 Composent, Inc. and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Composent, Inc. - initial API and implementation
- *****************************************************************************/
-
-package org.eclipse.ecf.examples.remoteservices.common;
-
-/**
- *
- */
-public interface IConcatService {
-
- public String concat(String first, String second);
-
-}
diff --git a/server-side/examples/bundles/org.eclipse.ecf.examples.remoteservices.common/src/org/eclipse/ecf/examples/remoteservices/common/IRemoteEnvironmentInfo.java b/server-side/examples/bundles/org.eclipse.ecf.examples.remoteservices.common/src/org/eclipse/ecf/examples/remoteservices/common/IRemoteEnvironmentInfo.java
new file mode 100644
index 000000000..ded1cadbf
--- /dev/null
+++ b/server-side/examples/bundles/org.eclipse.ecf.examples.remoteservices.common/src/org/eclipse/ecf/examples/remoteservices/common/IRemoteEnvironmentInfo.java
@@ -0,0 +1,114 @@
+/****************************************************************************
+ * Copyright (c) 2008 Composent, Inc. and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Composent, Inc. - initial API and implementation
+ *****************************************************************************/
+
+package org.eclipse.ecf.examples.remoteservices.common;
+
+
+/**
+ *
+ */
+public interface IRemoteEnvironmentInfo {
+
+ /**
+ * Returns all command line arguments specified when the running framework was started.
+ *
+ * @return the array of command line arguments.
+ */
+ public String[] getCommandLineArgs();
+
+ /**
+ * Returns the arguments consumed by the framework implementation itself. Which
+ * arguments are consumed is implementation specific.
+ *
+ * @return the array of command line arguments consumed by the framework.
+ */
+ public String[] getFrameworkArgs();
+
+ /**
+ * Returns the arguments not consumed by the framework implementation itself. Which
+ * arguments are consumed is implementation specific.
+ *
+ * @return the array of command line arguments not consumed by the framework.
+ */
+ public String[] getNonFrameworkArgs();
+
+ /**
+ * Returns the string name of the current system architecture.
+ * The value is a user-defined string if the architecture is
+ * specified on the command line, otherwise it is the value
+ * returned by <code>java.lang.System.getProperty("os.arch")</code>.
+ *
+ * @return the string name of the current system architecture
+ */
+ public String getOSArch();
+
+ /**
+ * Returns the string name of the current locale for use in finding files
+ * whose path starts with <code>$nl$</code>.
+ *
+ * @return the string name of the current locale
+ */
+ public String getNL();
+
+ /**
+ * Returns the string name of the current operating system for use in finding
+ * files whose path starts with <code>$os$</code>. Return "unknown"
+ * if the operating system cannot be determined.
+ * <p>
+ * The value may indicate one of the operating systems known to the platform
+ * (as specified in <code>org.eclipse.core.runtime.Platform#knownOSValues</code>)
+ * or a user-defined string if the operating system name is specified on the command line.
+ * </p>
+ *
+ * @return the string name of the current operating system
+ */
+ public String getOS();
+
+ /**
+ * Returns the string name of the current window system for use in finding files
+ * whose path starts with <code>$ws$</code>. Return <code>null</code>
+ * if the window system cannot be determined.
+ *
+ * @return the string name of the current window system or <code>null</code>
+ */
+ public String getWS();
+
+ /**
+ * Returns <code>true</code> if the framework is in debug mode and
+ * <code>false</code> otherwise.
+ *
+ * @return whether or not the framework is in debug mode
+ */
+ public Boolean inDebugMode();
+
+ /**
+ * Returns <code>true</code> if the framework is in development mode
+ * and <code>false</code> otherwise.
+ *
+ * @return whether or not the framework is in development mode
+ */
+ public Boolean inDevelopmentMode();
+
+ /**
+ * Returns the value for the specified property. Environment Properties are
+ * backed by the Java system properties. When the option
+ * <code>osgi.framework.useSystemProperties</code> is used then
+ * the environment properties are specific for each instance of the framework.
+ * <p>
+ * This method should be used instead of the <code>System.getProperty(String)</code>
+ * method to avoid the global nature of system properties.
+ * </p>
+ * @param key the property key
+ * @return the value of the property, or null
+ */
+ public String getProperty(String key);
+
+}

Back to the top