Package org.apache.roller.planet.tasks

Examples of org.apache.roller.planet.tasks.PlanetTask


        // We're using the new classloader from here on out
        Thread.currentThread().setContextClassLoader(cl);

        // Go!
        Class taskClass = cl.loadClass(taskClassName);
        PlanetTask task = (PlanetTask) taskClass.newInstance();
        task.initialize();
        task.run();
    }
View Full Code Here

TOP

Related Classes of org.apache.roller.planet.tasks.PlanetTask

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.