Package flex2.compiler.config

Examples of flex2.compiler.config.ConfigurationInfo


    return generateAbstractSyntaxTree;
  }

  public static ConfigurationInfo getGenerateAbstractSyntaxTreeInfo()
  {
    return new ConfigurationInfo()
    {
      public boolean isHidden()
      {
        return true;
      }
View Full Code Here


        configVars.add(new ConfigVar(ns, name, _value));
    }
   
    public static ConfigurationInfo getDefineInfo()
    {
        return new ConfigurationInfo(new String[] {"name", "value"})
        {
            public boolean allowMultiple() { return true; }
            public boolean isAdvanced()    { return true; }
        };
    }
View Full Code Here

        this.contextRoot = contextRoot;
    }

    public static ConfigurationInfo getContextRootInfo()
    {
        return new ConfigurationInfo( 1, "context-path" )
        {
        };
    }
View Full Code Here

      externalLibraryPath = (VirtualFile[])merge(externalLibraryPath, newPathElements, VirtualFile.class);
  }

    public static ConfigurationInfo getExternalLibraryPathInfo()
    {
        return new ConfigurationInfo( -1, new String[] { "path-element" } )
        {
            public boolean allowMultiple()
            {
                return true;
            }
View Full Code Here

    includeLibraries = (VirtualFile[])merge(includeLibraries, newPathElements, VirtualFile.class);
  }

  public static ConfigurationInfo getIncludeLibrariesInfo()
  {
    return new ConfigurationInfo( -1, new String[] { "library" } )
    {
      public boolean allowMultiple()
      {
        return true;
      }
View Full Code Here

        return false;
    }

    public static ConfigurationInfo getKeepAs3MetadataInfo()
    {
        return new ConfigurationInfo(-1, new String[] { "name" })
        {
            public boolean isAdvanced()
            {
              return true;
            }
View Full Code Here

      libraryPath = (VirtualFile[])merge(libraryPath, newPathElements, VirtualFile.class);
    }

    public static ConfigurationInfo getLibraryPathInfo()
    {
        return new ConfigurationInfo( -1, new String[] { "path-element" } )
        {
            public boolean allowMultiple()
            {
                return true;
            }
View Full Code Here

        locales = (String[])merge(newLocales, locales, String.class);
    }

    public static ConfigurationInfo getLocaleInfo()
    {
        return new ConfigurationInfo( -1, new String[] { "locale-element" } )
        {
            public boolean allowMultiple()
            {
                return true;
            }
View Full Code Here

        configVars.add(new ConfigVar(ns, name, _value));
    }
   
    public static ConfigurationInfo getDefineInfo()
    {
        return new ConfigurationInfo(new String[] {"name", "value"})
        {
            public boolean allowMultiple() { return true; }
            public boolean isAdvanced()    { return true; }
        };
    }
View Full Code Here

        this.contextRoot = contextRoot;
    }

    public static ConfigurationInfo getContextRootInfo()
    {
        return new ConfigurationInfo( 1, "context-path" )
        {
        };
    }
View Full Code Here

TOP

Related Classes of flex2.compiler.config.ConfigurationInfo

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.