Author: mes
Date: 2012-04-17 15:52:36 -0700 (Tue, 17 Apr 2012)
New Revision: 28869
Modified:
core3/api/trunk/webservice-swing-api/src/main/java/org/cytoscape/io/webservice/swing/AbstractWebServiceGUIClient.java
core3/api/trunk/webservice-swing-api/src/main/java/org/cytoscape/io/webservice/swing/WebServiceGUIClient.java
core3/api/trunk/webservice-swing-api/src/main/java/org/cytoscape/io/webservice/swing/package-info.java
Log:
updated javadocs
Modified:
core3/api/trunk/webservice-swing-api/src/main/java/org/cytoscape/io/webservice/swing/AbstractWebServiceGUIClient.java
===================================================================
---
core3/api/trunk/webservice-swing-api/src/main/java/org/cytoscape/io/webservice/swing/AbstractWebServiceGUIClient.java
2012-04-17 22:30:08 UTC (rev 28868)
+++
core3/api/trunk/webservice-swing-api/src/main/java/org/cytoscape/io/webservice/swing/AbstractWebServiceGUIClient.java
2012-04-17 22:52:36 UTC (rev 28869)
@@ -6,13 +6,18 @@
/**
* Abstract base class for web service clients with Swing GUI.
- *
*/
public abstract class AbstractWebServiceGUIClient extends
AbstractWebServiceClient implements WebServiceGUIClient {
// Client GUI. If this is null, default GUI will be used.
protected Container gui;
+ /**
+ * Constructor.
+ * @param uri A String representation of the URI.
+ * @param displayName The display name to be used for this client.
+ * @param description The description to be used for this client.
+ */
public AbstractWebServiceGUIClient(final String uri, final String
displayName, final String description) {
super(uri, displayName, description);
}
Modified:
core3/api/trunk/webservice-swing-api/src/main/java/org/cytoscape/io/webservice/swing/WebServiceGUIClient.java
===================================================================
---
core3/api/trunk/webservice-swing-api/src/main/java/org/cytoscape/io/webservice/swing/WebServiceGUIClient.java
2012-04-17 22:30:08 UTC (rev 28868)
+++
core3/api/trunk/webservice-swing-api/src/main/java/org/cytoscape/io/webservice/swing/WebServiceGUIClient.java
2012-04-17 22:52:36 UTC (rev 28869)
@@ -2,11 +2,15 @@
import java.awt.Container;
+/**
+ * An interface that allows web service clients to provide
+ * their own GUI component.
+ */
public interface WebServiceGUIClient {
+
/**
* Returns query builder UI. Since this is a TaskFactory,
* createTaskIterator() method should use parameters from this GUI.
- *
* @return query builder UI.
*/
Container getQueryBuilderGUI();
Modified:
core3/api/trunk/webservice-swing-api/src/main/java/org/cytoscape/io/webservice/swing/package-info.java
===================================================================
---
core3/api/trunk/webservice-swing-api/src/main/java/org/cytoscape/io/webservice/swing/package-info.java
2012-04-17 22:30:08 UTC (rev 28868)
+++
core3/api/trunk/webservice-swing-api/src/main/java/org/cytoscape/io/webservice/swing/package-info.java
2012-04-17 22:52:36 UTC (rev 28869)
@@ -1,4 +1,4 @@
/**
* Web Service Clients with Swing GUI.
*/
-package org.cytoscape.io.webservice.swing;
\ No newline at end of file
+package org.cytoscape.io.webservice.swing;
--
You received this message because you are subscribed to the Google Groups
"cytoscape-cvs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/cytoscape-cvs?hl=en.