Package org.apache.flex.compiler.problems

Examples of org.apache.flex.compiler.problems.ResourceBundleNotFoundProblem


                // Therefore, report an error.
                if (unresolvedLocales.size() == locales.size())
                {
                    //we couldn't resolve it for any locales or there was no locale,
                    //so show the generic error which doesn't mention any locales.
                    ResourceBundleNotFoundProblem problem = (location != null) ?
                            new ResourceBundleNotFoundProblem(location, bundleName) :
                            new ResourceBundleNotFoundProblem(bundleName);
                    errors.add(problem);
                }
                else
                {
                    //some of the locales couldn't be resolved so show errors expressing which locales couldn't be resolved.
View Full Code Here

TOP

Related Classes of org.apache.flex.compiler.problems.ResourceBundleNotFoundProblem

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.