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
wneuper@3922
     1
/*
wneuper@3922
     2
 * Created on Feb 6, 2004
wneuper@3922
     3
 */
wneuper@3922
     4
package isac.wsdialog;
wneuper@3922
     5
wneuper@3922
     6
/**
wneuper@3922
     7
 * Describes an action which has to pass a UI Element, e.g a activation or
wneuper@3922
     8
 * deactivating buttons.
wneuper@3922
     9
 * 
wneuper@3922
    10
 * @see isac.wsdialog.IUIElement
wneuper@3922
    11
 * @author Alan Krempler
wneuper@3922
    12
 */
wneuper@3922
    13
public class ActionOnUIElement extends UserAction {
wneuper@3922
    14
    private int ui_element_id_;
wneuper@3922
    15
wneuper@3922
    16
    public ActionOnUIElement(int id, int ui_element_id) {
wneuper@3922
    17
        super(id);
wneuper@3922
    18
        ui_element_id_ = ui_element_id;
wneuper@3922
    19
    }
wneuper@3922
    20
wneuper@3922
    21
    public int getUIElementId() {
wneuper@3922
    22
        return ui_element_id_;
wneuper@3922
    23
    }
wneuper@3922
    24
}