Package org.jasen.core.engine

Examples of org.jasen.core.engine.Jasen


     * Initialises the engine with the default configuration
     * @throws JasenException
     * @see org.jasen.core.engine.Jasen#init()
     */
    public void init() throws JasenException {
        jasen = new Jasen();
        jasen.init();
        initInternal();
    }
View Full Code Here


     * @param loader
     * @throws JasenException
     * @see org.jasen.core.engine.Jasen#init(JasenConfigurationLoader)
     */
    public void init(JasenConfigurationLoader loader) throws JasenException {
        jasen = new Jasen();
        jasen.init(loader);
        initInternal();
    }
View Full Code Here

     * @throws JasenException
     * @see org.jasen.core.engine.Jasen#init(String)
     * @deprecated
     */
    public void init(String config) throws JasenException {
        jasen = new Jasen();
        jasen.init(config);
        initInternal();
    }
View Full Code Here

     * @throws JasenException
     * @see org.jasen.core.engine.Jasen#init(InputStream)
     * @deprecated
     */
    public void init(InputStream in) throws JasenException {
        jasen = new Jasen();
        jasen.init(in);
        initInternal();
    }
View Full Code Here

TOP

Related Classes of org.jasen.core.engine.Jasen

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.