Package org.apache.flex.compiler.internal.resourcebundles

Examples of org.apache.flex.compiler.internal.resourcebundles.PropertiesFileParser


        {
            getProject().clearScopeCacheForCompilationUnit(this);
           
            final Collection<ICompilerProblem> problems = new LinkedList<ICompilerProblem>();
           
            PropertiesFileParser parser = new PropertiesFileParser(getProject().getWorkspace());
            final ResourceBundleFileNode fileNode = parser.parse(getFileName(), this.locale, getFileReader(problems), problems);

            ASFileScope fileScope = createFileScope(fileNode);
            addScopeToProjectScope(new ASFileScope[] { fileScope });

            return new SyntaxTreeRequestResult(fileNode, ImmutableSet.<String>of(), getRootFileSpecification().getLastModified(), problems);
View Full Code Here

TOP

Related Classes of org.apache.flex.compiler.internal.resourcebundles.PropertiesFileParser

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.