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

xworker.html.design.Resource Maven / Gradle / Ivy

There is a newer version: 2.0.3
Show newest version
package xworker.html.design;

/**
 * 需要动态加载的资源,stylesheet或javascript。
 * 
 * @author Administrator
 *
 */
public class Resource {
	public final String stylesheet = "stylesheet";
	public final String javascript = "javascript";
	
	String type;
	String path;
	
	public Resource(String type, String path){
		this.type = type;
		this.path = path;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy