All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.neogroup.warp.views.ViewFactory Maven / Gradle / Ivy

There is a newer version: 1.4.3
Show newest version

package org.neogroup.warp.views;

/**
 * Represents a view factory, responsible of creating views
 * @param  type of views the factory creates
 */
public abstract class ViewFactory {

    /**
     * Creates a view
     * @param viewName name of the view
     * @return create view
     * @throws ViewException
     */
    public abstract V createView(String viewName) throws ViewException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy