Kaydet (Commit) 0b1f4164 authored tarafından Rüdiger Timm's avatar Rüdiger Timm

INTEGRATION: CWS jsc21 (1.3.74); FILE MERGED

2008/02/13 12:58:33 jsc 1.3.74.1: #i83415# add doit3 to handled methods
üst 68351826
......@@ -2,9 +2,9 @@
*
* $RCSfile: DialogComponent.java,v $
*
* $Revision: 1.3 $
* $Revision: 1.4 $
*
* last change: $Author: obo $ $Date: 2007-01-25 11:05:22 $
* last change: $Author: rt $ $Date: 2008-07-11 14:20:17 $
*
* The Contents of this file are made available subject to the terms of
* the BSD license.
......@@ -177,9 +177,9 @@ public class DialogComponent {
"Event Object = " + aEventObject );
}
private String aHandlerMethod1 = "doit1";
private String aHandlerMethod2 = "doit2";
private String aHandlerMethod3 = "doit3";
private final String aHandlerMethod1 = "doit1";
private final String aHandlerMethod2 = "doit2";
private final String aHandlerMethod3 = "doit3";
//XDialogEventHandler
public boolean callHandlerMethod( /*IN*/XDialog xDialog, /*IN*/Object EventObject, /*IN*/String MethodName ) {
......@@ -202,9 +202,10 @@ public class DialogComponent {
}
public String[] getSupportedMethodNames() {
String[] retValue= new String[1];
String[] retValue= new String[3];
retValue[0]= aHandlerMethod1;
retValue[1]= aHandlerMethod2;
retValue[2]= aHandlerMethod3;
return retValue;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment