Package LONI.tree.module.format

Examples of LONI.tree.module.format.FileTypes


  private List<Parameter> inputs;
  private Values values;
  private Authors authors;
 
  public DataModule() {
    this.fileTypes = new FileTypes();
    this.inputs = new ArrayList<Parameter>();
    this.outputs = new ArrayList<Output>();
    this.inputs = new ArrayList<Parameter>();
    this.tags = new ArrayList<String>();
    this.values = new Values();
View Full Code Here


    this.dirSource = dirSource;
    this.dirDump = dirDump;
    this.useDirSourceFilters = useDirSourceFilters;
    this.dirSourceFilterType = dirSourceFilterType;
    this.recursive = recursive;
    this.fileTypes = new FileTypes();
    this.metadata = metadata;
    this.inputs = new ArrayList<Parameter>();
    this.outputs = new ArrayList<Output>();
    this.values = new Values();
    this.authors = new Authors();
View Full Code Here

    Link source;
    Link sink;
    Parameter parameter = null;
    Output output = null;
    Format format;
    FileTypes fileTypes;
   

    for(DataLink d : datalinks){
      source = d.getSource();
      sourceLinkType = source.getLinkType();
      sourcePort = source.getPort();
      sourceProcessor = source.getProcessor();
     
      sink = d.getSink();
      sinkLinkType = sink.getLinkType();
      sinkPort = sink.getPort();
      sinkProcessor = sink.getProcessor();
     
     
      // Even if the Taverna port is a SOURCE, that will correspond to Output.class in LONI. It's weird, but you have to be careful. In side the Input of LONI, the dataModule actually contains <output>, not <input>!
      if(sinkPort == inputPortName){
        parameter = new Parameter();
        parameter.setId(dataModule.getId() +".Input");
        parameter.setName(inputPortName);
        parameter.setDescription("Input description");
        parameter.setRequired(true);
        parameter.setEnabled(true);
        parameter.setOrder(tavernaContext.getNextOrder());
        parameter.setLink("");
        parameter.setValues(new Values());
        // Create a new Format for parameter
        format = new Format();
        format.setType("File");
        format.setCardinality(1);
        format.setCardinalityBase("");
          format.setTransformationBase("");
         
        // Create and fill in file types for format
        fileTypes = new FileTypes();
        fileTypes.addFileType(new FileType(TavernaType, "", ""));
        format.setFileTypes(fileTypes);
       
        // Give parameter the newly created Format object
        parameter.setFileFormat(format);
       
View Full Code Here

TOP

Related Classes of LONI.tree.module.format.FileTypes

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.