Package net.sourceforge.veditor.builder

Examples of net.sourceforge.veditor.builder.BuildConfig


      hdlCommand = description.newCommand();
      hdlCommand.setBuilderName(SIMULATOR_ID);
      //add it to the list of builders
      commandList.add(hdlCommand);
      //set the arguments
      Map<String,String> args=BuildConfig.encodeArgs(new BuildConfig[]{new BuildConfig()});
      hdlCommand.setArguments(args);
      //set the builders
      description.setBuildSpec(commandList.toArray(new ICommand[0]));
      getProject().setDescription(description, null);
    }   
View Full Code Here


   /**
    * Returns a build configuration based on the user input
    * @return
    */
   public BuildConfig getBuildConfig(){
     BuildConfig results=null;
     if(m_bUseDefault){
       //default configuraion
       results=new BuildConfig();
       results.setName(m_NewName);
     }
     else{
       //copy a configuration
       BuildConfig source=m_SelectedConfig.clone();
       results=source.clone();
       results.setName(m_NewName);
     }
    
     return results;
   }
View Full Code Here

TOP

Related Classes of net.sourceforge.veditor.builder.BuildConfig

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.