src/java/isac/wsdialog/ActionOnUIElement.java
author wneuper
Wed, 15 Jun 2005 18:31:02 +0200
branchjava_rename_format
changeset 3922 fcd5648113ca
permissions -rw-r--r--
java: isac.util.tactics .. end renamed, formatted, inst_var_, import cleaned
     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 }