Package fr.soleil.comete.widget

Examples of fr.soleil.comete.widget.IComponent


    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 void setOptionList(String[] optionList) {
    IComponent component = getComponent();
    if (component != null && component instanceof IComboBox) {
      ((IComboBox) component).setOptionList(optionList);
    }
  }
View Full Code Here

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

  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 String[] getOptionList() {
    IComponent component = getComponent();
    if (component != null && component instanceof IComboBox) {
      return ((IComboBox) component).getOptionList();
    }
    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).setOptionList(optionList);
    }
  }
View Full Code Here

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

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

        widget.getComponent().setButtonLook(true);
        return widget;
    }

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

            ((IButton) component).setText(text);
        }
    }

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

TOP

Related Classes of fr.soleil.comete.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.