Package com.helger.css.decl
Class CSSNamespaceRule
- java.lang.Object
-
- com.helger.css.decl.CSSNamespaceRule
-
- All Implemented Interfaces:
ICSSSourceLocationAware,ICSSWriteable
@NotThreadSafe public class CSSNamespaceRule extends Object implements ICSSWriteable, ICSSSourceLocationAware
Represents a single namespace rule on top level.
Example:
@namespace Q "http://example.com/q-markup";- Author:
- Philip Helger
-
-
Constructor Summary
Constructors Constructor Description CSSNamespaceRule(String sURL)Constructor for the default namespaceCSSNamespaceRule(String sNamespacePrefix, String sURL)Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringgetAsCSSString(ICSSWriterSettings aSettings, int nIndentLevel)Get the contents of this object as a serialized CSS string for writing to an output.StringgetNamespacePrefix()StringgetNamespaceURL()CSSSourceLocationgetSourceLocation()inthashCode()CSSNamespaceRulesetNamespacePrefix(String sNamespacePrefix)CSSNamespaceRulesetNamespaceURL(String sURL)voidsetSourceLocation(CSSSourceLocation aSourceLocation)Set the source location of the object, determined while parsing.StringtoString()-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.helger.css.ICSSWriteable
getAsCSSString, getAsCSSString
-
-
-
-
Method Detail
-
setNamespacePrefix
@Nonnull public final CSSNamespaceRule setNamespacePrefix(@Nullable String sNamespacePrefix)
-
getNamespaceURL
@Nonnull public final String getNamespaceURL()
- Returns:
- The namespace URL. May not be
nullbut maybe empty!
-
setNamespaceURL
@Nonnull public final CSSNamespaceRule setNamespaceURL(@Nonnull String sURL)
-
getAsCSSString
@Nonnull @Nonempty public String getAsCSSString(@Nonnull ICSSWriterSettings aSettings, @Nonnegative int nIndentLevel)
Description copied from interface:ICSSWriteableGet the contents of this object as a serialized CSS string for writing to an output.- Specified by:
getAsCSSStringin interfaceICSSWriteable- Parameters:
aSettings- The settings to be used to format the output. May not benull.nIndentLevel- The current indentation level- Returns:
- The content of this object as CSS string. Never
null.
-
getSourceLocation
@Nullable public final CSSSourceLocation getSourceLocation()
- Specified by:
getSourceLocationin interfaceICSSSourceLocationAware- Returns:
- The source location of this object when it was read by the parser.
May be
nullif an object was not read but manually created.
-
setSourceLocation
public final void setSourceLocation(@Nullable CSSSourceLocation aSourceLocation)
Description copied from interface:ICSSSourceLocationAwareSet the source location of the object, determined while parsing.- Specified by:
setSourceLocationin interfaceICSSSourceLocationAware- Parameters:
aSourceLocation- The source location to use. May benull.
-
-