Package uk.org.ogsadai.data

Examples of uk.org.ogsadai.data.StringData


     * @param classIndex
     *            index of the class column
     */
    public void setOptions(final String options)
    {
       mOptionsInput.add(new StringData(options));
    }
View Full Code Here


     * @param names names for bins
     */
    public void setBinNames(String[] names) {
      mBinNamesInput.add(ListBegin.VALUE);
      for(String value:names)
        mBinNamesInput.add(new StringData(value));
      mBinNamesInput.add(ListEnd.VALUE);
     
    }
View Full Code Here

    {
        if ( ! hasNextResult())
        {
            throw new NoSuchElementException();
        }    
        StringData graph = (StringData)mResultOutput.getDataValueIterator().next();     
        return graph.toString();
    }  
View Full Code Here

TOP

Related Classes of uk.org.ogsadai.data.StringData

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.