Tabnine Logo
ExmlConfiguration.computeConfigClassTarget
Code IndexAdd Tabnine to your IDE (free)

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

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

origin: CoreMedia/jangaroo-tools

@SuppressWarnings({"UnusedDeclaration" })
public File computeGeneratedConfigClassFile(File exmlFile) {
 return computeConfigClassTarget(CompilerUtils.uncapitalize(CompilerUtils.removeExtension(exmlFile.getName())));
}
origin: CoreMedia/jangaroo-tools

public File generateConfigClass() {
 if (generatedConfigClassFile == null) {
  ConfigClass configClass = getConfigClass();
  generatedConfigClassFile = configClassRegistry.getConfig().computeConfigClassTarget(configClass.getName());
  // only recreate file if result file is older than the source file
  if (mustGenerate(generatedConfigClassFile)) {
   // generate the new config class ActionScript file
   try {
    new ExmlConfigClassGenerator().generateClass(configClass, generatedConfigClassFile);
   } catch (Exception e) {
    throw new ExmlcException("unable to generate config class: " + e.getMessage(), generatedConfigClassFile, e);
   }
  }
 }
 return generatedConfigClassFile;
}
origin: net.jangaroo/exml-compiler

public File generateConfigClass() {
 if (generatedConfigClassFile == null) {
  ConfigClass configClass = getConfigClass();
  generatedConfigClassFile = configClassRegistry.getConfig().computeConfigClassTarget(configClass.getName());
  // only recreate file if result file is older than the source file
  if (mustGenerate(generatedConfigClassFile)) {
   // generate the new config class ActionScript file
   try {
    new ExmlConfigClassGenerator().generateClass(configClass, generatedConfigClassFile);
   } catch (Exception e) {
    throw new ExmlcException("unable to generate config class: " + e.getMessage(), generatedConfigClassFile, e);
   }
  }
 }
 return generatedConfigClassFile;
}
net.jangaroo.exml.configExmlConfigurationcomputeConfigClassTarget

Popular methods of ExmlConfiguration

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

Popular in Java

  • Running tasks concurrently on multiple threads
  • scheduleAtFixedRate (ScheduledExecutorService)
  • findViewById (Activity)
  • startActivity (Activity)
  • GridLayout (java.awt)
    The GridLayout class is a layout manager that lays out a container's components in a rectangular gri
  • Menu (java.awt)
  • Enumeration (java.util)
    A legacy iteration interface.New code should use Iterator instead. Iterator replaces the enumeration
  • Stack (java.util)
    Stack is a Last-In/First-Out(LIFO) data structure which represents a stack of objects. It enables u
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches
  • HttpServletRequest (javax.servlet.http)
    Extends the javax.servlet.ServletRequest interface to provide request information for HTTP servlets.
  • Top plugins for WebStorm
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