Package fr.soleil.comete.definition.widget

Examples of fr.soleil.comete.definition.widget.IComponent


            ((IComboBox) component).setDisplayedList(optionList);
        }
    }

    public String[] getOptionList() {
        IComponent component = getComponent();
        if (component != null && component instanceof IComboBox) {
            return ((IComboBox) component).getDisplayedList();
        }
        return null;
    }
View Full Code Here


    public void setRetrieveCommandName(String retrieveCommandName) {
        m_cmdhelper.setCompleteEntityName(retrieveCommandName);
    }

    public void setValueList(String[] valueList) {
        IComponent component = getComponent();
        if (component != null && component instanceof IComboBox) {
            ((IComboBox) component).setValueList(valueList);
        }
    }
View Full Code Here

            ((IComboBox) component).setValueList(valueList);
        }
    }

    public String[] getValueList() {
        IComponent component = getComponent();
        if (component != null && component instanceof IComboBox) {
            return ((IComboBox) component).getValueList();
        }
        return null;
    }
View Full Code Here

        }
        return null;
    }

    public void setOptionList(String[] optionList) {
        IComponent component = getComponent();
        if (component != null && component instanceof IComboBox) {
            ((IComboBox) component).setDisplayedList(optionList);
        }
    }
View Full Code Here

            ((IComboBox) component).setDisplayedList(optionList);
        }
    }

    public String[] getOptionList() {
        IComponent component = getComponent();
        if (component != null && component instanceof IComboBox) {
            return ((IComboBox) component).getDisplayedList();
        }
        return null;
    }
View Full Code Here

    }

    public void setEnabled(boolean enabled) {
        this.enabled = enabled;
        if (target instanceof IComponent) {
            IComponent comp = (IComponent) target;
            comp.setEnabled(enabled);
        }
        if (enabled) {
            TargetUtils.updateTargetAvailabilities(lastOrigin, target);
        }
    }
View Full Code Here

        result.addTangoWidgetListener(this);
        return result;
    }

    public void setEditable(boolean editable) {
        IComponent component = getComponent();
        if (component != null && component instanceof TextFieldButton) {
            ((TextFieldButton) component).setEditable(editable);
        }
    }
View Full Code Here

            ((TextFieldButton) component).setEditable(editable);
        }
    }

    public boolean isEditable() {
        IComponent component = getComponent();
        if (component != null && component instanceof TextFieldButton) {
            return ((TextFieldButton) component).isEditable();
        }
        return false;
    }
View Full Code Here

        }
        return false;
    }

    public void setTextButton(String text) {
        IComponent component = getComponent();
        if (component != null && component instanceof TextFieldButton) {
            ((TextFieldButton) component).setTextButton(text);
        }
    }
View Full Code Here

            ((TextFieldButton) component).setTextButton(text);
        }
    }

    public String getTextButton() {
        IComponent component = getComponent();
        if (component != null && component instanceof TextFieldButton) {
            return ((TextFieldButton) component).getTextButton();
        }
        return "";
    }
View Full Code Here

TOP

Related Classes of fr.soleil.comete.definition.widget.IComponent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.