diff options
author | Michi Henning <michi@zeroc.com> | 2009-07-20 13:16:17 +1000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2009-07-20 13:16:17 +1000 |
commit | 09eabfe43746b4db696223a426197e6196e1efce (patch) | |
tree | 6a80bc8338b1f5b38816acb18912fff26aed291f /java/src/Ice/Application.java | |
parent | bug 2806 - Java holder changes for class/interface types (diff) | |
download | ice-09eabfe43746b4db696223a426197e6196e1efce.tar.bz2 ice-09eabfe43746b4db696223a426197e6196e1efce.tar.xz ice-09eabfe43746b4db696223a426197e6196e1efce.zip |
Bug 3502 - Improve javadoc support in Eclipse
Fixed many doc comments in Java and Slice and
added doc comments for C#.
Diffstat (limited to 'java/src/Ice/Application.java')
-rw-r--r-- | java/src/Ice/Application.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/java/src/Ice/Application.java b/java/src/Ice/Application.java index 342845bf84e..6a7f5931891 100644 --- a/java/src/Ice/Application.java +++ b/java/src/Ice/Application.java @@ -108,7 +108,7 @@ public abstract class Application * the value of the <code>Ice.ProgramName</code> property. * @param args The arguments for the application (as passed to <code>Main(String[])</code>. * @param configFile The configuration file with which to initialize Ice properties. - * @param overrideProps Property values that override any settings in <code>configFile</code. + * @param overrideProps Property values that override any settings in <code>configFile</code>. * @return The value returned by <code>run</code>. If <code>run</code> terminates with an exception, * the return value is non-zero. * @@ -174,7 +174,6 @@ public abstract class Application * to <code>run</code> is free from Ice-related options and contains only options * and arguments that are application-specific. * - * @param args The argument vector for the application, minus any Ice-specific options. * @return The <code>run</code> method should return zero for successful termination, and * non-zero otherwise. <code>Application.main</code> returns the value returned by <code>run</code>. **/ @@ -198,7 +197,7 @@ public abstract class Application /** * Returns the communicator for the application. Because <communicator> is a static method, * it permits access to the communicator from anywhere in the program. Note that, as a consequence, - * you cannot more than one instance of <code>Application</code> in a program. + * you cannot have more than one instance of <code>Application</code> in a program. * * @return The communicator for the application. **/ |