Class AbstractTagBase
java.lang.Object
com.webfirmframework.wffweb.tag.core.AbstractTagBase
- All Implemented Interfaces:
TagBase
,Serializable
,Cloneable
- Direct Known Subclasses:
AbstractAttribute
,AbstractJsObject
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
getData()
Gets the given data set bysetData
.int
hashCode()
boolean
boolean
void
Sets the given data.void
setModified
(boolean modified) set true whenever this object's state is modified.void
setRebuild
(boolean rebuild) Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.webfirmframework.wffweb.tag.core.TagBase
toHtmlString, toHtmlString, toHtmlString, toHtmlString, toHtmlString, toHtmlString, toString
-
Constructor Details
-
AbstractTagBase
public AbstractTagBase()
-
-
Method Details
-
isRebuild
public boolean isRebuild()- Returns:
- the rebuild
- Since:
- 1.0.0
-
setRebuild
public void setRebuild(boolean rebuild) - Parameters:
rebuild
- the rebuild to set- Since:
- 1.0.0
-
hashCode
public int hashCode() -
equals
-
isModified
public boolean isModified()- Returns:
- the modified true if the current objects state is modified
- Since:
- 1.0.0
-
setModified
public void setModified(boolean modified) set true whenever this object's state is modified.- Parameters:
modified
- the modified to set- Since:
- 1.0.0
-
getData
Gets the given data set bysetData
. This is merely a getter-setter methods of data property. The developer can set and get any data using these methods.- Returns:
- the data set by
setCode
method. - Since:
- 2.1.4
-
setData
Sets the given data. This is merely a getter-setter methods of data property. The developer can set and get any data using these methods.- Parameters:
data
-- Since:
- 2.1.4
-