Package org.woped.pnml.TextType

Examples of org.woped.pnml.TextType.Phrase


        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

Related Classes of org.woped.pnml.TextType.Phrase

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.