Class FixedHeaderTableLibrarySettings
- java.lang.Object
-
- com.googlecode.wicket.jquery.ui.plugins.fixedheadertable.settings.FixedHeaderTableLibrarySettings
-
public class FixedHeaderTableLibrarySettings extends Object
Provides library settings for the jQuery FixedHeaderTable plugin resource references
Usage:public class MyApplication extends WebApplication { public void init() { super.init(); FixedHeaderTableLibrarySettings settings = FixedHeaderTableLibrarySettings.get(); settings.setJavaScriptReference(new JavaScriptResourceReference(...)); settings.setStyleSheetReference(new CssResourceReference(...)); } }
- Author:
- Sebastien Briquet - sebfz1
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static FixedHeaderTableLibrarySettings
get()
Gets theFixedHeaderTableLibrarySettings
instanceorg.apache.wicket.request.resource.ResourceReference
getJavaScriptReference()
Gets the plugin javascript resource referenceorg.apache.wicket.request.resource.ResourceReference
getStyleSheetReference()
Gets the plugin stylesheet resource referencevoid
setJavascriptReference(org.apache.wicket.request.resource.ResourceReference reference)
Sets the plugin javascript resource referencevoid
setStylesheetReference(org.apache.wicket.request.resource.ResourceReference reference)
Sets the plugin stylesheet resource reference
-
-
-
Method Detail
-
get
public static FixedHeaderTableLibrarySettings get()
Gets theFixedHeaderTableLibrarySettings
instance- Returns:
- the
FixedHeaderTableLibrarySettings
instance
-
getJavaScriptReference
public org.apache.wicket.request.resource.ResourceReference getJavaScriptReference()
Gets the plugin javascript resource reference- Returns:
- the
ResourceReference
-
setJavascriptReference
public void setJavascriptReference(org.apache.wicket.request.resource.ResourceReference reference)
Sets the plugin javascript resource reference- Parameters:
reference
- theResourceReference
-
getStyleSheetReference
public org.apache.wicket.request.resource.ResourceReference getStyleSheetReference()
Gets the plugin stylesheet resource reference- Returns:
- the
ResourceReference
-
setStylesheetReference
public void setStylesheetReference(org.apache.wicket.request.resource.ResourceReference reference)
Sets the plugin stylesheet resource reference- Parameters:
reference
- theResourceReference
-
-