Update of /cvsroot/thinlet/thinlet/src/java/thinlet
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10682/src/java/thinlet
Modified Files:
Thinlet.java
Log Message:
Comment the invoke method
Index: Thinlet.java
===================================================================
RCS file: /cvsroot/thinlet/thinlet/src/java/thinlet/Thinlet.java,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- Thinlet.java 4 Oct 2004 23:22:26 -0000 1.17
+++ Thinlet.java 5 Oct 2004 20:57:28 -0000 1.18
@@ -4439,7 +4439,12 @@
}
/**
- *
+ * Invokes a method, such as an action, on the specified component.
+ *
+ * @param component the component to fire the event on, such as a textfield or table
+ * @param part the part of the component, null for a textfield, the row for a table
+ * @param event the event to send, such as 'action'
+ * @return true if a method object was fired
*/
protected boolean invoke(Object component, Object part, String event) {
Object method = get(component, event);
|