Codota Logo
ExmlConfiguration.setConfigClassPackage
Code IndexAdd Codota to your IDE (free)

How to use
setConfigClassPackage
method
in
net.jangaroo.exml.config.ExmlConfiguration

Best Java code snippets using net.jangaroo.exml.config.ExmlConfiguration.setConfigClassPackage (Showing top 2 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Connection c =
  • Codota IconDataSource dataSource;dataSource.getConnection()
  • Codota IconString url;DriverManager.getConnection(url)
  • Codota IconIdentityDatabaseUtil.getDBConnection()
  • Smart code suggestions by Codota
}
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.configExmlConfigurationsetConfigClassPackage

Popular methods of ExmlConfiguration

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

Popular in Java

  • Start an intent from android
  • getSupportFragmentManager (FragmentActivity)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • getExternalFilesDir (Context)
  • ObjectMapper (com.fasterxml.jackson.databind)
    This mapper (or, data binder, or codec) provides functionality for converting between Java objects (
  • SimpleDateFormat (java.text)
    Formats and parses dates in a locale-sensitive manner. Formatting turns a Date into a String, and pa
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • Properties (java.util)
    The Properties class represents a persistent set of properties. The Properties can be saved to a st
  • Collectors (java.util.stream)
  • JFrame (javax.swing)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now