src/java/isac/wsdialog/ActionOnUIElement.java
branchjava_rename_format
changeset 3922 fcd5648113ca
equal deleted inserted replaced
963:b4896ce4d1b0 3922:fcd5648113ca
       
     1 /*
       
     2  * Created on Feb 6, 2004
       
     3  */
       
     4 package isac.wsdialog;
       
     5 
       
     6 /**
       
     7  * Describes an action which has to pass a UI Element, e.g a activation or
       
     8  * deactivating buttons.
       
     9  * 
       
    10  * @see isac.wsdialog.IUIElement
       
    11  * @author Alan Krempler
       
    12  */
       
    13 public class ActionOnUIElement extends UserAction {
       
    14     private int ui_element_id_;
       
    15 
       
    16     public ActionOnUIElement(int id, int ui_element_id) {
       
    17         super(id);
       
    18         ui_element_id_ = ui_element_id;
       
    19     }
       
    20 
       
    21     public int getUIElementId() {
       
    22         return ui_element_id_;
       
    23     }
       
    24 }