Class CssUtils
- java.lang.Object
-
- org.apache.wicket.core.util.string.CssUtils
-
public final class CssUtils extends java.lang.ObjectUtility methods for CSS.- Author:
- eelcohillenius
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringINLINE_CLOSE_TAGCSS inline close tagstatic java.lang.StringINLINE_OPEN_TAGCSS inline open tagstatic java.lang.StringINLINE_OPEN_TAG_STARTstart of CSS inline open tag
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.Stringkey(java.lang.Class<?> scope, java.lang.String facet)Get a standardized key for a CSS class.static voidwriteCloseTag(org.apache.wicket.request.Response response)static voidwriteCss(org.apache.wicket.request.Response response, java.lang.CharSequence text, java.lang.String id)Write the simple text to the response object surrounded by a style tag.static voidwriteLinkUrl(org.apache.wicket.request.Response response, java.lang.CharSequence url, java.lang.CharSequence media, java.lang.String markupId)Writes a reference to a css file in the response objectstatic voidwriteLinkUrl(org.apache.wicket.request.Response response, java.lang.CharSequence url, java.lang.CharSequence media, java.lang.String markupId, java.lang.String rel)Writes a reference to a css file in the response objectstatic voidwriteOpenTag(org.apache.wicket.request.Response response, java.lang.String id)
-
-
-
Field Detail
-
INLINE_OPEN_TAG_START
public static final java.lang.String INLINE_OPEN_TAG_START
start of CSS inline open tag- See Also:
- Constant Field Values
-
INLINE_OPEN_TAG
public static final java.lang.String INLINE_OPEN_TAG
CSS inline open tag- See Also:
- Constant Field Values
-
INLINE_CLOSE_TAG
public static final java.lang.String INLINE_CLOSE_TAG
CSS inline close tag- See Also:
- Constant Field Values
-
-
Method Detail
-
writeCss
public static void writeCss(org.apache.wicket.request.Response response, java.lang.CharSequence text, java.lang.String id)Write the simple text to the response object surrounded by a style tag.- Parameters:
response- The HTTP: responsetext- The text to added in between the style tagsid- Unique identifier of element
-
writeOpenTag
public static void writeOpenTag(org.apache.wicket.request.Response response, java.lang.String id)- Parameters:
response-id-
-
writeCloseTag
public static void writeCloseTag(org.apache.wicket.request.Response response)
- Parameters:
response-
-
writeLinkUrl
public static void writeLinkUrl(org.apache.wicket.request.Response response, java.lang.CharSequence url, java.lang.CharSequence media, java.lang.String markupId)Writes a reference to a css file in the response object- Parameters:
response- the response to write tourl- the url of the css referencemedia- the CSS mediamarkupId- the markupId
-
writeLinkUrl
public static void writeLinkUrl(org.apache.wicket.request.Response response, java.lang.CharSequence url, java.lang.CharSequence media, java.lang.String markupId, java.lang.String rel)Writes a reference to a css file in the response object- Parameters:
response- the response to write tourl- the url of the css referencemedia- the CSS mediamarkupId- the markupIdrel- the rel attribute
-
key
public static java.lang.String key(java.lang.Class<?> scope, java.lang.String facet)Get a standardized key for a CSS class.- Parameters:
scope- scope of CSS classfacet- facet of CSS class- Returns:
- CSS key
-
-