summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT Program/photon/org/eclipse
diff options
context:
space:
mode:
authorCarolyn MacLeod <carolyn>2004-05-11 07:57:52 +0000
committerCarolyn MacLeod <carolyn>2004-05-11 07:57:52 +0000
commit524d79ea9ecd8197dab8f8d1b2841285c04ec9f7 (patch)
tree30c7b8e86d504488a801c042869ad6fcbad6dcb6 /bundles/org.eclipse.swt/Eclipse SWT Program/photon/org/eclipse
parentf429db6e57773ce96e34f2fa05fa073db3cdc6c7 (diff)
downloadeclipse.platform.swt-524d79ea9ecd8197dab8f8d1b2841285c04ec9f7.tar.gz
eclipse.platform.swt-524d79ea9ecd8197dab8f8d1b2841285c04ec9f7.tar.xz
eclipse.platform.swt-524d79ea9ecd8197dab8f8d1b2841285c04ec9f7.zip
Javadoc Basher output pre M9AFTER_JAVADOC_BASH_FOR_30M9
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT Program/photon/org/eclipse')
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT Program/photon/org/eclipse/swt/program/Program.java16
1 files changed, 12 insertions, 4 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Program/photon/org/eclipse/swt/program/Program.java b/bundles/org.eclipse.swt/Eclipse SWT Program/photon/org/eclipse/swt/program/Program.java
index 098adc809c..1c9cd00dbd 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT Program/photon/org/eclipse/swt/program/Program.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Program/photon/org/eclipse/swt/program/Program.java
@@ -36,7 +36,9 @@ Program () {
/**
* Finds the program that is associated with an extension.
- * The extension may or may not begin with a '.'.
+ * The extension may or may not begin with a '.'. Note that
+ * a <code>Display</code> must already exist to guarantee that
+ * this method returns an appropriate result.
*
* @param extension the program extension
* @return the program or <code>null</code>
@@ -75,7 +77,9 @@ public static Program findProgram (String extension) {
}
/**
- * Answer all program extensions in the operating system.
+ * Answer all program extensions in the operating system. Note
+ * that a <code>Display</code> must already exist to guarantee
+ * that this method returns an appropriate result.
*
* @return an array of extensions
*/
@@ -108,7 +112,9 @@ public static String [] getExtensions () {
}
/**
- * Answers all available programs in the operating system.
+ * Answers all available programs in the operating system. Note
+ * that a <code>Display</code> must already exist to guarantee
+ * that this method returns an appropriate result.
*
* @return an array of programs
*/
@@ -152,7 +158,9 @@ public static Program [] getPrograms () {
/**
* Launches the executable associated with the file in
* the operating system. If the file is an executable,
- * then the executable is launched.
+ * then the executable is launched. Note that a <code>Display</code>
+ * must already exist to guarantee that this method returns
+ * an appropriate result.
*
* @param fileName the file or program name
* @return <code>true</code> if the file is launched, otherwise <code>false</code>