gpt4 book ai didi

com.github.bordertech.wcomponents.WText.getText()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-25 18:35:05 27 4
gpt4 key购买 nike

本文整理了Java中com.github.bordertech.wcomponents.WText.getText()方法的一些代码示例,展示了WText.getText()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WText.getText()方法的具体详情如下:
包路径:com.github.bordertech.wcomponents.WText
类名称:WText
方法名:getText

WText.getText介绍

暂无

代码示例

代码示例来源:origin: com.github.bordertech.wcomponents/wcomponents-examples

/**
   * {@inheritDoc}
   */
  @Override
  public String getText() {
    return super.getText() + " generated at: " + new Date();
  }
}

代码示例来源:origin: com.github.bordertech.wcomponents/wcomponents-examples

/**
   * {@inheritDoc}
   */
  @Override
  public String getText() {
    return super.getText() + "<br/> Text generated at: " + new Date();
  }
}

代码示例来源:origin: com.github.bordertech.wcomponents/wcomponents-examples

/**
   * {@inheritDoc}
   */
  @Override
  public String getText() {
    return super.getText() + "<br/> Text generated at: " + new Date();
  }
}

代码示例来源:origin: com.github.bordertech.wcomponents/wcomponents-core

/**
 * @return a String representation of this component, for debugging purposes.
 */
@Override
public String toString() {
  String text = getText();
  text = text == null ? "null" : ('"' + text + '"');
  return toString(text);
}

代码示例来源:origin: com.github.bordertech.wcomponents/wcomponents-examples

@Override
  public void execute(final ActionEvent event) {
    ajaxContent.setText(before.equals(ajaxContent.getText()) ? after : before);
  }
});

代码示例来源:origin: com.github.bordertech.wcomponents/wcomponents-core

/**
 * Override in order to filter the encoded text.
 *
 * @return the filtered encoded text
 */
@Override
public String getText() {
  String text = super.getText();
  FilterTextModel model = getComponentModel();
  if (text != null && model.search != null && model.replace != null) {
    text = text.replaceAll(model.search, model.replace);
  }
  return text;
}

代码示例来源:origin: com.github.bordertech.wcomponents/wcomponents-examples

@Override
public void execute(final ActionEvent event) {
  WTabSet tabSet = (WTabSet) event.getSource();
  int activeIndex = tabSet.getActiveIndex();
  String time = " The time is now " + new Date().toString();
  if (activeIndex == tabset.getTabIndex(text1)) {
    text1.setText(text1.getText() + time);
  } else if (activeIndex == tabset.getTabIndex(text2)) {
    text2.setText(text2.getText() + time);
  } else if (activeIndex == tabset.getTabIndex(text3)) {
    text3.setText(text3.getText() + time);
  }
}

代码示例来源:origin: com.github.bordertech.wcomponents/wcomponents-core

@Test
public void testNoSanitizeOnOutput() {
  String input = "<form>content</form>";
  WText text = new WText(input);
  text.setEncodeText(false);
  Assert.assertEquals("Expect output to not be sanitized", input, text.getText());
}

代码示例来源:origin: com.github.bordertech.wcomponents/wcomponents-core

/**
 * Attempts to retrieve the text contained in the body component. This works only for simple components types:
 * <ul>
 * <li>{@link WButton}</li>
 * <li>{@link WLink}</li>
 * <li>{@link WLabel}</li>
 * <li>{@link WText}</li>
 * </ul>
 *
 * @return the text contained in the body, or null if not found.
 */
public String getText() {
  WComponent body = getComponentModel().body;
  if (body instanceof WText) {
    return ((WText) body).getText();
  } else if (body instanceof WLabel) {
    return ((WLabel) body).getText();
  } else if (body instanceof WButton) {
    return ((WButton) body).getText();
  } else if (body instanceof WLink) {
    return ((WLink) body).getText();
  }
  return null;
}

代码示例来源:origin: com.github.bordertech.wcomponents/wcomponents-core

@Test
public void testGetText() {
  WText wtf = new WText();
  String defaultText = "Dflt";
  String myText = "MyText";
  wtf.setText(defaultText);
  Assert.assertEquals("Incorrect default text", defaultText, wtf.getText());
  // Set test for a users session
  wtf.setLocked(true);
  setActiveContext(createUIContext());
  wtf.setText(myText);
  Assert.assertEquals("Should have session text", myText, wtf.getText());
  resetContext();
  Assert.assertEquals("Should have default text", defaultText, wtf.getText());
}

代码示例来源:origin: com.github.bordertech.wcomponents/wcomponents-core

@Test
  public void testSanitizeOnOutput() {
    WText text = new WText("<form>content</form>");
    text.setSanitizeOnOutput(true);
    text.setEncodeText(false);
    Assert.assertEquals("Expect output to be sanitized", "content", text.getText());
  }
}

代码示例来源:origin: com.github.bordertech.wcomponents/wcomponents-core

@Test
public void testConstructor1() {
  WSection section = new WSection("label");
  WText txt = (WText) section.getDecoratedLabel().getBody();
  Assert.assertEquals("Constructor - Incorrect label", "label", txt.getText());
  Assert.assertNotNull("Constructor - Content should not be null by default", section.
      getContent());
}

代码示例来源:origin: com.github.bordertech.wcomponents/wcomponents-core

/**
   * Paints the given WText.
   *
   * @param component the WText to paint.
   * @param renderContext the RenderContext to paint to.
   */
  @Override
  public void doRender(final WComponent component, final WebXmlRenderContext renderContext) {
    WText text = (WText) component;
    XmlStringBuilder xml = renderContext.getWriter();

    String textString = text.getText();

    if (textString != null) {
      if (text.isEncodeText()) {
        xml.print(WebUtilities.encode(textString));
      } else {
        // If we are outputting unencoded content it must be XML valid.
        xml.print(HtmlToXMLUtil.unescapeToXML(textString));
      }
    }
  }
}

代码示例来源:origin: com.github.bordertech.wcomponents/wcomponents-core

@Test
public void testConstructor2() {
  WPanel panel = new WPanel();
  WSection section = new WSection(panel, "label");
  WText txt = (WText) section.getDecoratedLabel().getBody();
  Assert.assertEquals("Constructor - Incorrect label", "label", txt.getText());
  Assert.assertSame("Constructor - Incorrect content", panel, section.getContent());
}

代码示例来源:origin: com.github.bordertech.wcomponents/wcomponents-core

@Test
public void testConstructor1() {
  WText content = new WText();
  WFigure figure = new WFigure(content, "label");
  WText txt = (WText) figure.getDecoratedLabel().getBody();
  Assert.assertEquals("Constructor - Incorrect label", "label", txt.getText());
  Assert.assertSame("Constructor - Incorrect content", content, figure.getContent());
}

代码示例来源:origin: com.github.bordertech.wcomponents/wcomponents-core

@Test
public void testConstructor2() {
  WText content = new WText();
  WFigure figure = new WFigure(content, "label");
  WText txt = (WText) figure.getDecoratedLabel().getBody();
  Assert.assertEquals("Constructor2 - Incorrect label", "label", txt.getText());
  Assert.assertSame("Constructor2 - Incorrect content", content, figure.getContent());
}

代码示例来源:origin: com.github.bordertech.wcomponents/wcomponents-examples

/**
 * applySettings creates the WCollapsible, and loads it into the container.
 */
private void applySettings() {
  // reset the container.
  container.reset();
  // create the new collapsible.
  WText component1 = new WText("Here is some text that is collapsible via ajax.");
  WCollapsible collapsible1 = new WCollapsible(component1, "Collapsible",
      (CollapsibleMode) rbCollapsibleSelect.getSelected());
  collapsible1.setCollapsed(cbCollapsed.isSelected());
  collapsible1.setVisible(cbVisible.isSelected());
  if (collapsible1.getMode() == CollapsibleMode.DYNAMIC) {
    component1.setText(component1.getText() + "\u00a0Generated on " + new Date());
  }
  if (drpHeadingLevels.getSelected() != null) {
    collapsible1.setHeadingLevel((HeadingLevel) drpHeadingLevels.getSelected());
  }
  // add the new collapsible to the container.
  container.add(collapsible1);
}

代码示例来源:origin: com.github.bordertech.wcomponents/wcomponents-examples

overview.setText(overview.getText()
    + "\n<ul>"
    + " <li>Field 2 must not contain the text \"qwerty\".</li>"

代码示例来源:origin: com.github.bordertech.wcomponents/wcomponents-core

setActiveContext(uic);
wText.setText("WTEXT - UIC");
Assert.assertEquals("Incorrect text value for WText Component with uic", wText.getText(),
    label.getText());
Assert.assertEquals("Incorrect text value for WText Component", wText.getText(), label.
    getText());
Assert.assertEquals("Incorrect text value set for WText Component", wText.getText(), label.
    getText());
Assert.
    assertEquals("Incorrect text value set for WText Component with uic", wText.
        getText(), label.getText());
label.setText("WTEXT2 - UIC");
Assert.
    assertEquals("Incorrect text value set for WText Component with uic", wText.
        getText(), label.getText());
Assert.assertEquals("Incorrect text value set for WText Component", wText.getText(), label.
    getText());

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com