You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

29 lines
827 B

package com.fr.plugin.pack;
import com.fr.web.struct.Component;
import com.fr.web.struct.Filter;
import com.fr.web.struct.browser.RequestClient;
import com.fr.web.struct.category.ScriptPath;
import com.fr.web.struct.category.StylePath;
public class ShowDef extends Component {
public static final ShowDef KEY = new ShowDef();
public ShowDef(){}
public ScriptPath script( RequestClient client ) {
return ScriptPath.build("com/fr/plugin/enadaptation/show.js");
}
public StylePath style( RequestClient client ) {
return StylePath.build("com/fr/plugin/enadaptation/show.css");
}
public Filter filter() {
return new Filter(){
@Override
public boolean accept() {
return true;
}
};
}
}