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

cn.tom.mvc.view.ViewFactory Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package cn.tom.mvc.view;

public abstract class ViewFactory {
	public static final DefaultViewFactory FACTORY = new DefaultViewFactory();
	
    public static View getView(){
    	return FACTORY.create();
    }
    
    public static void initView(){
    	View view = getView();
    	if(view == null) return;
    	view.init();
    }
	
	abstract View create();
	

	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy