Package flex2.compiler.util

Examples of flex2.compiler.util.LineNumberMap$Range


     *
     * @param includeSource A source file.
     */
    public void addComponent(File includeSource)
    {
        sources.add(new LocalFile(includeSource));
    }
View Full Code Here


     *
     * @param includeSource A source file.
     */
    public void removeComponent(File includeSource)
    {
        sources.remove(new LocalFile(includeSource));
    }
View Full Code Here

     * @param name The name in the archive.
     * @param file The file to be added.
     */
    public void addArchiveFile(String name, File file)
    {
        files.put(name, new LocalFile(file));
    }
View Full Code Here

     * @param file The file to be added.
     * @since 3.0
     */
    public void addStyleSheet(String name, File file)
    {
        stylesheets.put(name, new LocalFile(file));
    }
View Full Code Here

        output = null;
        directory = null;
        mimeMappings = new MimeMappings();
        meter = null;
        resolver = null;
        cc = new CompilerControl();

        //data = null;
        cacheName = null;
        configurationReport = null;
        messages = new ArrayList<Message>();
View Full Code Here

    }
  }

    public void logInfo(String path, String info)
    {
        LineNumberMap map = null;
        if ((map = matchPath(path)) != null)
        {
            original.logInfo(map.getOldName(), info);
        }
        else
        {
            original.logInfo(path, info);
        }
View Full Code Here

        }
    }

    public void logDebug(String path, String debug)
    {
        LineNumberMap map = null;
        if ((map = matchPath(path)) != null)
        {
            original.logDebug(map.getOldName(), debug);
        }
        else
        {
            original.logDebug(path, debug);
        }
View Full Code Here

        }
    }

    public void logWarning(String path, String warning)
    {
        LineNumberMap map = null;
        if ((map = matchPath(path)) != null)
        {
            original.logWarning(map.getOldName(), warning);
        }
        else
        {
            original.logWarning(path, warning);
        }
View Full Code Here

        }
    }

  public void logWarning(String path, String warning, int errorCode)
  {
      LineNumberMap map = null;
      if ((map = matchPath(path)) != null)
      {
          original.logWarning(map.getOldName(), warning, errorCode);
      }
      else
      {
          original.logWarning(path, warning, errorCode);
      }
View Full Code Here

      }
  }

    public void logError(String path, String error)
    {
        LineNumberMap map = null;
        if ((map = matchPath(path)) != null)
        {
            original.logError(map.getOldName(), error);
        }
        else
        {
            original.logError(path, error);
        }
View Full Code Here

TOP

Related Classes of flex2.compiler.util.LineNumberMap$Range

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.