Examples of TextType


Examples of de.lessvoid.nifty.loaderv2.types.TextType

  protected Element createText(
      final Nifty nifty,
      final Screen screen,
      final Element parent) {
    TextType textType = new TextType(attributes);
    return buildControl(nifty, screen, parent, textType, new LayoutPart());
  }
View Full Code Here

Examples of de.lessvoid.nifty.loaderv2.types.TextType

    return parent.findElementByName(attributes.get("id"));
  }

  @Override
  public ElementType createType() {
    return new TextType(attributes);
  }
View Full Code Here

Examples of gov.nist.checklists.xccdf.x11.TextType

  public void setStartTime(Calendar startTime) {
    data.setStartTime(startTime);
  }

  public void setTitle(String text, String lang) {
    TextType node = data.addNewTitle();
    node.setStringValue(text);
    node.setLang(lang);
  }
View Full Code Here

Examples of gov.nist.checklists.xccdf.x12.TextType

  public void setStartTime(Calendar startTime) {
    data.setStartTime(startTime);
  }

  public void setTitle(String text, String lang) {
    TextType node = data.addNewTitle();
    node.setStringValue(text);
    node.setLang(lang);
  }
View Full Code Here

Examples of org.apache.padaf.xmpbox.type.TextType

  @Test
  public void testBagManagement() throws Exception {
    String bagName = "nsSchem:BAGTEST";
    String value1 = "valueOne";
    String value2 = "valueTwo";
    schem.addBagValue(bagName, new TextType(parent, "rdf", "li", value1));
    schem.addBagValue(bagName, value2);

    List<String> values = schem.getBagValueList(bagName);
    Assert.assertEquals(value1, values.get(0));
    Assert.assertEquals(value2, values.get(1));
View Full Code Here

Examples of org.apache.xmpbox.type.TextType

        return (URIType) getProperty(ANCESTORID);
    }

    public String getAncestorID()
    {
        TextType tt = ((TextType) getProperty(ANCESTORID));
        return tt == null ? null : tt.getStringValue();
    }
View Full Code Here

Examples of org.apache.xmpbox.type.TextType

        return (TextType) getProperty(AUTHORS_POSITION);
    }

    public String getAuthorsPosition()
    {
        TextType tt = ((TextType) getProperty(AUTHORS_POSITION));
        return tt == null ? null : tt.getStringValue();
    }
View Full Code Here

Examples of org.apache.xmpbox.type.TextType

        return tt == null ? null : tt.getStringValue();
    }

    public void setAuthorsPosition(String text)
    {
        TextType tt = (TextType) instanciateSimple(AUTHORS_POSITION, text);
        setAuthorsPositionProperty(tt);
    }
View Full Code Here

Examples of org.apache.xmpbox.type.TextType

        return (TextType) getProperty(CAPTION_WRITER);
    }

    public String getCaptionWriter()
    {
        TextType tt = ((TextType) getProperty(CAPTION_WRITER));
        return tt == null ? null : tt.getStringValue();
    }
View Full Code Here

Examples of org.apache.xmpbox.type.TextType

        return (TextType) getProperty(CATEGORY);
    }

    public String getCategory()
    {
        TextType tt = ((TextType) getProperty(CATEGORY));
        return tt == null ? null : tt.getStringValue();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.