src/java/isac/wsdialog/ActionOnUIElement.java
branchjava_rename_format
changeset 3922 fcd5648113ca
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/java/isac/wsdialog/ActionOnUIElement.java	Wed Jun 15 18:31:02 2005 +0200
     1.3 @@ -0,0 +1,24 @@
     1.4 +/*
     1.5 + * Created on Feb 6, 2004
     1.6 + */
     1.7 +package isac.wsdialog;
     1.8 +
     1.9 +/**
    1.10 + * Describes an action which has to pass a UI Element, e.g a activation or
    1.11 + * deactivating buttons.
    1.12 + * 
    1.13 + * @see isac.wsdialog.IUIElement
    1.14 + * @author Alan Krempler
    1.15 + */
    1.16 +public class ActionOnUIElement extends UserAction {
    1.17 +    private int ui_element_id_;
    1.18 +
    1.19 +    public ActionOnUIElement(int id, int ui_element_id) {
    1.20 +        super(id);
    1.21 +        ui_element_id_ = ui_element_id;
    1.22 +    }
    1.23 +
    1.24 +    public int getUIElementId() {
    1.25 +        return ui_element_id_;
    1.26 +    }
    1.27 +}
    1.28 \ No newline at end of file