Package com.greentea.relaxation.jnmf.util.data.loading

Examples of com.greentea.relaxation.jnmf.util.data.loading.TextDataLoader


      if (!s.hasNextLine())
      {
         throw new DataLoadException(Localizer.getString(StringId.NO_DATA_FOR_ANALYSIS));
      }

      TextDataLoader textDataLoader = new TextDataLoader();
      textDataLoader.setDataInTextForm(interactiveInputTextPane.getText());
      textDataLoader.setLoadInputData(true);

      Metadata metadataWithoutOutputs = metadata.clone();
      metadataWithoutOutputs.removeColumns(VariableType.OUT);

      textDataLoader.setMetadata(metadataWithoutOutputs);
      return textDataLoader.load();
   }
View Full Code Here

TOP

Related Classes of com.greentea.relaxation.jnmf.util.data.loading.TextDataLoader

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.