Class EmoticonsLibrarySettings
- java.lang.Object
-
- com.googlecode.wicket.jquery.ui.plugins.emoticons.settings.EmoticonsLibrarySettings
-
public class EmoticonsLibrarySettings extends Object
Provides library settings for jQuery emoticons plugin resource references
Usage:public class MyApplication extends WebApplication { public void init() { super.init(); EmoticonsLibrarySettings settings = EmoticonsLibrarySettings.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 EmoticonsLibrarySettings
get()
Gets theEmoticonsLibrarySettings
instanceorg.apache.wicket.request.resource.ResourceReference
getJavaScriptReference()
Gets the emoticons javascript resource referenceorg.apache.wicket.request.resource.ResourceReference
getStyleSheetReference()
Gets the emoticons stylesheet resource referencevoid
setJavascriptReference(org.apache.wicket.request.resource.ResourceReference reference)
Sets the emoticons javascript resource referencevoid
setStylesheetReference(org.apache.wicket.request.resource.ResourceReference reference)
Sets the emoticons stylesheet resource reference
-
-
-
Method Detail
-
get
public static EmoticonsLibrarySettings get()
Gets theEmoticonsLibrarySettings
instance- Returns:
- the
EmoticonsLibrarySettings
instance
-
getJavaScriptReference
public org.apache.wicket.request.resource.ResourceReference getJavaScriptReference()
Gets the emoticons javascript resource reference- Returns:
- the
ResourceReference
-
setJavascriptReference
public void setJavascriptReference(org.apache.wicket.request.resource.ResourceReference reference)
Sets the emoticons javascript resource reference- Parameters:
reference
- theResourceReference
-
getStyleSheetReference
public org.apache.wicket.request.resource.ResourceReference getStyleSheetReference()
Gets the emoticons stylesheet resource reference- Returns:
- the
ResourceReference
-
setStylesheetReference
public void setStylesheetReference(org.apache.wicket.request.resource.ResourceReference reference)
Sets the emoticons stylesheet resource reference- Parameters:
reference
- theResourceReference
-
-