Tabnine Logo
ExmlConfiguration.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
net.jangaroo.exml.config.ExmlConfiguration
constructor

Best Java code snippets using net.jangaroo.exml.config.ExmlConfiguration.<init> (Showing top 4 results out of 315)

origin: CoreMedia/jangaroo-tools

 public ExmlConfiguration parse(String[] args) throws CommandLineParseException {
  ExmlConfiguration config = new ExmlConfiguration();

  CmdLineParser parser = new CmdLineParser(config);
  try {
   // parse the arguments.
   parser.parseArgument(args);
  } catch (CmdLineException e) {
   StringBuilder msg = extendedUsage(parser, e);
   throw new CommandLineParseException(msg.toString(), -1);
  }
  return parseConfig(parser, config);
 }
}
origin: net.jangaroo/exml-compiler

 public ExmlConfiguration parse(String[] args) throws CommandLineParseException {
  ExmlConfiguration config = new ExmlConfiguration();

  CmdLineParser parser = new CmdLineParser(config);
  try {
   // parse the arguments.
   parser.parseArgument(args);
  } catch (CmdLineException e) {
   StringBuilder msg = extendedUsage(parser, e);
   throw new CommandLineParseException(msg.toString(), -1);
  }
  return parseConfig(parser, config);
 }
}
origin: CoreMedia/jangaroo-tools

protected ExmlConfiguration createExmlConfiguration(List<File> classPath, List<File> sourcePath, File outputDirectory) throws MojoExecutionException {
 if (configClassPackage == null) {
  throw new MojoExecutionException("parameter 'configClassPackage' is missing");
 }
 ExmlConfiguration exmlConfiguration = new ExmlConfiguration();
 exmlConfiguration.setConfigClassPackage(configClassPackage);
 exmlConfiguration.setClassPath(classPath);
 exmlConfiguration.setOutputDirectory(outputDirectory);
 try {
  exmlConfiguration.setSourcePath(sourcePath);
 } catch (IOException e) {
  throw new MojoExecutionException("could not determine source directory", e);
 }
 return exmlConfiguration;
}
origin: net.jangaroo/jangaroo-maven-plugin

 @Override
 public void execute() throws MojoExecutionException {
  String configClassPackage = getNamespaces()[0].getUri().substring(EXML_CONFIG_URI_PREFIX.length());

  ExmlConfiguration exmlConfiguration = new ExmlConfiguration();
  exmlConfiguration.setConfigClassPackage(configClassPackage);
  exmlConfiguration.setClassPath(getMavenPluginHelper().getActionScriptClassPath(false));
  exmlConfiguration.setOutputDirectory(getSourceDirectory());
  try {
   exmlConfiguration.setSourcePath(Collections.singletonList(getSourceDirectory()));
  } catch (IOException e) {
   throw new MojoExecutionException("could not determine source directory", e);
  }

  try {
   new MxmlLibraryManifestGenerator(new ConfigClassRegistry(exmlConfiguration)).createManifestFile();
  } catch (IOException e) {
   throw new MojoExecutionException("could not generate manifest", e);
  }
 }
}
net.jangaroo.exml.configExmlConfiguration<init>

Popular methods of ExmlConfiguration

  • computeConfigClassTarget
  • findSourceDir
  • getConfigClassPackage
  • getOutputDirectory
  • getSourceFiles
  • getValidationMode
  • setClassPath
  • setConfigClassPackage
  • setOutputDirectory
  • setResourceOutputDirectory
  • setSourcePath
  • computeGeneratedComponentClassFile
  • setSourcePath,
  • computeGeneratedComponentClassFile,
  • getClassPath,
  • getExtAsJar,
  • getLog,
  • getResourceOutputDirectory,
  • getSourcePath,
  • isConvertToMxml,
  • isKeepExmlFiles

Popular in Java

  • Finding current android device location
  • setRequestProperty (URLConnection)
  • findViewById (Activity)
  • notifyDataSetChanged (ArrayAdapter)
  • FileWriter (java.io)
    A specialized Writer that writes to a file in the file system. All write requests made by calling me
  • IOException (java.io)
    Signals a general, I/O-related error. Error details may be specified when calling the constructor, a
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • ResourceBundle (java.util)
    ResourceBundle is an abstract class which is the superclass of classes which provide Locale-specifi
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • Response (javax.ws.rs.core)
    Defines the contract between a returned instance and the runtime when an application needs to provid
  • CodeWhisperer alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now