Package com.vaadin.flow.dom.impl
Class CustomAttribute
- java.lang.Object
-
- com.vaadin.flow.dom.impl.CustomAttribute
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ClassAttributeHandler,StyleAttributeHandler
public abstract class CustomAttribute extends Object implements Serializable
Callback for handling attributes with special semantics. This is used for e.g.classwhich is assembled from a separate list of tokens instead of being stored as a regular attribute string.For internal use only. May be renamed or removed in a future release.
- Since:
- 1.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CustomAttribute()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static Optional<CustomAttribute>get(String name)Gets the custom attribute with the provided name, if present.abstract StringgetAttribute(Element element)Gets the value that should be returned byElement.getAttribute(String)for this attribute.static Set<String>getNames()Gets an unmodifiable set of custom attribute names.abstract booleanhasAttribute(Element element)Checks whatElement.hasAttribute(String)should return for this attribute.abstract voidremoveAttribute(Element element)Removes the attribute whenElement.removeAttribute(String)is called for this attribute.abstract voidsetAttribute(Element element, String value)Sets the value whenElement.setAttribute(String, String)is called for this attribute.
-
-
-
Method Detail
-
get
public static Optional<CustomAttribute> get(String name)
Gets the custom attribute with the provided name, if present.- Parameters:
name- the name of the attribute- Returns:
- and optional custom attribute, or an empty optional if there is no attribute with the given name
-
getNames
public static Set<String> getNames()
Gets an unmodifiable set of custom attribute names.- Returns:
- a set of attribute names
-
hasAttribute
public abstract boolean hasAttribute(Element element)
Checks whatElement.hasAttribute(String)should return for this attribute.- Parameters:
element- the element to check, notnull- Returns:
trueif the element has a value for this attribute, otherwisefalse
-
getAttribute
public abstract String getAttribute(Element element)
Gets the value that should be returned byElement.getAttribute(String)for this attribute.- Parameters:
element- the element to check, notnull- Returns:
- the attribute value
-
setAttribute
public abstract void setAttribute(Element element, String value)
Sets the value whenElement.setAttribute(String, String)is called for this attribute.- Parameters:
element- the element for which to set the value, notnullvalue- the new attribute value, notnull
-
removeAttribute
public abstract void removeAttribute(Element element)
Removes the attribute whenElement.removeAttribute(String)is called for this attribute.- Parameters:
element- the element for which to remove the attribute, notnull
-
-