Examples of TextType


Examples of org.apache.xmpbox.type.TextType

     *
     * @return the unique identifier value
     */
    public String getIdentifier()
    {
        TextType tt = (TextType) getProperty(IDENTIFIER);
        return tt == null ? null : tt.getStringValue();
    }
View Full Code Here

Examples of org.apache.xmpbox.type.TextType

     *
     * @return value of source property
     */
    public String getSource()
    {
        TextType tt = (TextType) getProperty(SOURCE);
        return tt == null ? null : tt.getStringValue();
    }
View Full Code Here

Examples of org.apache.xmpbox.type.TextType

     *
     * @return webStatement URL value
     */
    public String getWebStatement()
    {
        TextType tt = ((TextType) getProperty(WEBSTATEMENT));
        return tt == null ? null : tt.getStringValue();
    }
View Full Code Here

Examples of org.apache.xmpbox.type.TextType

     *
     * @return certificate URL value
     */
    public String getCertificate()
    {
        TextType tt = ((TextType) getProperty(CERTIFICATE));
        return tt == null ? null : tt.getStringValue();
    }
View Full Code Here

Examples of org.jfree.layouting.layouter.content.type.TextType

      }
    }

    if (content instanceof TextType)
    {
      final TextType textRaw = (TextType) content;
      final String textStr = textRaw.getText();

      final RenderNode[] text = createText(textStr, context);
      if (text.length == 0)
      {
        return;
View Full Code Here

Examples of org.woped.pnml.TextType

    // }
    // }
   
    private void saveTextualDescription(NetType iNet, ModelElementContainer elementContainer){
     
      TextType textType = null;
      if(iNet.isSetText()){
        iNet.unsetText();
      }

      //table has values
      int tableSize = elementContainer.getParaphrasingModel().getTableSize();
      if(tableSize > 0){
       
        textType = iNet.addNewText();
       
        //write every row of the table to the file
        for(int i = 0; i < tableSize; i++){
          String[] row = elementContainer.getParaphrasingModel().getElementByRow(i);
          Phrase phrase = textType.addNewPhrase();
          phrase.setIds(row[0].trim());
          phrase.setStringValue(row[1].trim());
          LoggerManager.debug(Constants.FILE_LOGGER, "   ... Description (ID:" + row[0] + ") set");

        }       
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.