Package flex2.compiler.util

Examples of flex2.compiler.util.CompilerMessage$CompilerInfo


    catch (Exception e)
    {
      if (Trace.error)
        e.printStackTrace();

      CompilerMessage c = new CouldNotCreate("ASDoc_Config.xml", e.getMessage());
      ThreadLocalToolkit.log(c);
      throw c;
    }
    finally
    {
View Full Code Here


    catch (Exception e)
    {
      if (Trace.error)
        e.printStackTrace();

      CompilerMessage c = new CouldNotCreate("overviews.xml", e.getMessage());
      ThreadLocalToolkit.log(c);
      throw c;
    }
    finally
    {
View Full Code Here

    }
    catch (Throwable t)
    {
      t.printStackTrace();

      CompilerMessage c = new CouldNotCreate("toplevel.xml", t.getMessage());
      ThreadLocalToolkit.log(c);
      throw c;
    }
  }
View Full Code Here

      }
      catch (Exception ex)
      {
        ex.printStackTrace();

        CompilerMessage c = new CouldNotCreate("index.html", ex.getMessage());
        ThreadLocalToolkit.log(c);
        throw c;
      }
      finally
      {
View Full Code Here

            styleSheet.parse(cssFile.getName(), cssFileStream, ThreadLocalToolkit.getLogger(), fontManager);
            extractStyles(styleSheet, false);
        }
        catch (Exception exception)
        {
            CompilerMessage m = new ParseError(exception.getLocalizedMessage());
            m.setPath(cssFile.getName());
            ThreadLocalToolkit.log(m);
        }
        finally
        {
            if (cssFileStream != null)
View Full Code Here

        // Check the source name is a valid component name.
        String componentName = source.getShortName();
        if (!TextParser.isValidIdentifier(componentName))
        {
            CompilerMessage m = new InvalidComponentName(componentName);
            m.setPath(source.getNameForReporting());
            ThreadLocalToolkit.log(m);
        }

        if (benchmarkHelper != null)
            benchmarkHelper.endPhase(CompilerBenchmarkHelper.PREPROCESS);
View Full Code Here

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

        //data = null;
View Full Code Here

            this.files.add(files[i]);
        }
        oemConfiguration = null;
        logger = null;
        output = null;
        mimeMappings = new MimeMappings();
        meter = null;
        resolver = null;
        cc = new CompilerControl();
        //isGeneratedTargetFile = false;
View Full Code Here

                }
            }
           
        }
        ISWF swf = mxmlc.getSWFTarget();
        movie = new SimpleMovie(null);
        org.apache.flex.swf.types.Rect r = swf.getFrameSize();
        flash.swf.types.Rect fr = new flash.swf.types.Rect();
        fr.xMin = r.xMin();
        fr.yMin = r.yMin();
        fr.xMax = r.xMax();
View Full Code Here

          }
          else
          {
              if (verbose)
                System.out.println("new application");
              job = new AppJob(new Application(mainAppFile));
              apps.put(key, job);
          }
            job.app.setProgressMeter(progress);
             
            //compilations one at the time on the same project
View Full Code Here

TOP

Related Classes of flex2.compiler.util.CompilerMessage$CompilerInfo

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.