Package org.olat.core.gui.components.form.flexible.impl.elements

Examples of org.olat.core.gui.components.form.flexible.impl.elements.StaticTextElementImpl


   * @param translatedText
   * @param formLayout
   * @return
   */
  public StaticTextElement addStaticTextElement(String name, String i18nLabel,String translatedText, FormItemContainer formLayout) {
    StaticTextElement ste = new StaticTextElementImpl(name,translatedText);
    setLabelIfNotNull(i18nLabel, ste);
    formLayout.add(ste);
    return ste;
  }
View Full Code Here


   */
  public FormItem getStepShortDescription(){
    if(i18nStepDescription == null){
      return null;
    }
    return new StaticTextElementImpl(i18nStepDescription, getTranslator().translate(i18nStepDescription));
  }
View Full Code Here

TOP

Related Classes of org.olat.core.gui.components.form.flexible.impl.elements.StaticTextElementImpl

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.