Package org.openhab.model.sitemap

Examples of org.openhab.model.sitemap.Text


 
  /**
   * {@inheritDoc}
   */
  public EList<Widget> renderWidget(Widget w, StringBuilder sb) throws RenderException {
    Text text = (Text) w;
    String snippet = (text.getChildren().size() > 0) ?
      getSnippet("text_link") : getSnippet("text");     
     
    snippet = StringUtils.replace(snippet, "%id%", itemUIRegistry.getWidgetId(w));
    snippet = StringUtils.replace(snippet, "%icon%", escapeURLPath(itemUIRegistry.getIcon(w)));
    snippet = StringUtils.replace(snippet, "%label%", getLabel(w));
View Full Code Here

TOP

Related Classes of org.openhab.model.sitemap.Text

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.