Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2006-05-23 01:51:37 +0000
committerslewis2006-05-23 01:51:37 +0000
commiteb268f734e7bc4ce5b50eacedab0ef7751eb7b88 (patch)
tree78032459e28c24029f11e7d83cab31e3c9d10ba2 /examples/bundles/org.eclipse.ecf.example.collab
parenta93a2c0936892618abc8fb573854c7644ec9dddf (diff)
downloadorg.eclipse.ecf-eb268f734e7bc4ce5b50eacedab0ef7751eb7b88.tar.gz
org.eclipse.ecf-eb268f734e7bc4ce5b50eacedab0ef7751eb7b88.tar.xz
org.eclipse.ecf-eb268f734e7bc4ce5b50eacedab0ef7751eb7b88.zip
Fixes to javadocs
Diffstat (limited to 'examples/bundles/org.eclipse.ecf.example.collab')
-rw-r--r--examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/share/EclipseProjectComponent.java7
-rw-r--r--examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/share/RemoteSharedObjectMsgEvent.java2
-rw-r--r--examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/share/SharedObjectMsg.java2
-rw-r--r--examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/share/io/FileTransferSharedObject.java2
4 files changed, 6 insertions, 7 deletions
diff --git a/examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/share/EclipseProjectComponent.java b/examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/share/EclipseProjectComponent.java
index 4930165a2..e73f33fb2 100644
--- a/examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/share/EclipseProjectComponent.java
+++ b/examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/share/EclipseProjectComponent.java
@@ -40,9 +40,9 @@ public interface EclipseProjectComponent {
* This method is invoked when a message is sent to the given
* component
*
- * @param meth
- * @param args
- * @return
+ * @param meth the method name to invoke
+ * @param args array of args to pass to call
+ * @return Object result of the invocation
*/
public Object invoke(String meth, Object[] args);
@@ -52,7 +52,6 @@ public interface EclipseProjectComponent {
* may override this method in order to cleanup during component shutdown
*
* @param obj
- * @param requestor
* @throws Exception
*/
public void deregister(EclipseProject obj);
diff --git a/examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/share/RemoteSharedObjectMsgEvent.java b/examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/share/RemoteSharedObjectMsgEvent.java
index c90230626..888a0e53b 100644
--- a/examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/share/RemoteSharedObjectMsgEvent.java
+++ b/examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/share/RemoteSharedObjectMsgEvent.java
@@ -20,7 +20,7 @@ public class RemoteSharedObjectMsgEvent extends RemoteSharedObjectEvent {
/**
* @param senderObj
* @param remoteCont
- * @param data
+ * @param msg
*/
public RemoteSharedObjectMsgEvent(ID senderObj, ID remoteCont, SharedObjectMsg msg) {
super(senderObj, remoteCont, msg);
diff --git a/examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/share/SharedObjectMsg.java b/examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/share/SharedObjectMsg.java
index 0cb757a65..93d576d6d 100644
--- a/examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/share/SharedObjectMsg.java
+++ b/examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/share/SharedObjectMsg.java
@@ -114,7 +114,7 @@ public class SharedObjectMsg implements Serializable {
/**
* Get array of argument types from array of objects
*
- * @param args[]
+ * @param args
* the arguments to get types for
* @return Class[] of types for objects in given Object array
*/
diff --git a/examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/share/io/FileTransferSharedObject.java b/examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/share/io/FileTransferSharedObject.java
index 4450b67cb..ed1417e46 100644
--- a/examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/share/io/FileTransferSharedObject.java
+++ b/examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/share/io/FileTransferSharedObject.java
@@ -334,7 +334,7 @@ public class FileTransferSharedObject extends TransactionSharedObject
* Handler for done msg. NOTE: If this method name is changed,
* then the static variable 'doneMethodName' should be changed to match.
*
- * @param data the FileData involved in the failure
+ * @param e the Exception involved in the failure
*/
public void handleDone(Exception e)
{

Back to the top