Class PageRenderResponse.Tag
- java.lang.Object
-
- com.gentics.contentnode.rest.model.response.PageRenderResponse.Tag
-
- Enclosing class:
- PageRenderResponse
public static class PageRenderResponse.Tag extends Object
Class for instances of tags
-
-
Field Summary
Fields Modifier and Type Field Description protected List<PageRenderResponse.Editable>
editables
List of editables (if the tag contains any)protected String
element
ID of the DOM element of the tagprotected boolean
onlyeditables
True if the tag only contains editables, false if notprotected String
tagname
Tagname
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<PageRenderResponse.Editable>
getEditables()
String
getElement()
String
getTagname()
boolean
isOnlyeditables()
void
setEditables(List<PageRenderResponse.Editable> editables)
void
setElement(String element)
void
setOnlyeditables(boolean onlyeditables)
Set whether the tag only contains editablesvoid
setTagname(String tagname)
-
-
-
Field Detail
-
element
protected String element
ID of the DOM element of the tag
-
tagname
protected String tagname
Tagname
-
onlyeditables
protected boolean onlyeditables
True if the tag only contains editables, false if not
-
editables
protected List<PageRenderResponse.Editable> editables
List of editables (if the tag contains any)
-
-
Method Detail
-
getElement
public String getElement()
- Returns:
- the element
-
setElement
public void setElement(String element)
- Parameters:
element
- the element to set
-
getTagname
public String getTagname()
- Returns:
- the tagname
-
isOnlyeditables
public boolean isOnlyeditables()
- Returns:
- true if the tag only contains editables, false if not
-
setTagname
public void setTagname(String tagname)
- Parameters:
tagname
- the tagname to set
-
getEditables
public List<PageRenderResponse.Editable> getEditables()
- Returns:
- the editables
-
setEditables
public void setEditables(List<PageRenderResponse.Editable> editables)
- Parameters:
editables
- the editables to set
-
setOnlyeditables
public void setOnlyeditables(boolean onlyeditables)
Set whether the tag only contains editables- Parameters:
onlyeditables
-
-
-