Package npanday.model.compiler.plugins.io.xpp3

Examples of npanday.model.compiler.plugins.io.xpp3.CompilerPluginXpp3Reader


     * @see Repository#load(java.io.InputStream, java.util.Hashtable)
     */
    public void load( InputStream inputStream, Hashtable properties )
        throws NPandayRepositoryException
    {
        CompilerPluginXpp3Reader xpp3Reader = new CompilerPluginXpp3Reader();
        Reader reader = new InputStreamReader( inputStream );
        CompilerPluginsModel plugins;
        try
        {
            plugins = xpp3Reader.read( reader );
        }
        catch( IOException e )
        {
            throw new NPandayRepositoryException( "NPANDAY-062-000: An error occurred while reading plugins-compiler.xml", e );
        }
View Full Code Here

TOP

Related Classes of npanday.model.compiler.plugins.io.xpp3.CompilerPluginXpp3Reader

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.