
xworker.html.design.Resource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xworker_web Show documentation
Show all versions of xworker_web Show documentation
The web model liberary of XWorker.
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