Package org.htmlcleaner
Class NestingState
- java.lang.Object
-
- org.htmlcleaner.NestingState
-
class NestingState extends java.lang.Object
Nesting State Wrapper for a current HtmlCleaner cleaning state, keeping together the set of open tags and breaks in the current state.
-
-
Field Summary
Fields Modifier and Type Field Description private ChildBreaks
childBreaks
private OpenTags
openTags
-
Constructor Summary
Constructors Constructor Description NestingState(OpenTags openTags, ChildBreaks childBreaks)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ChildBreaks
getChildBreaks()
OpenTags
getOpenTags()
-
-
-
Field Detail
-
openTags
private OpenTags openTags
-
childBreaks
private ChildBreaks childBreaks
-
-
Constructor Detail
-
NestingState
public NestingState(OpenTags openTags, ChildBreaks childBreaks)
-
-
Method Detail
-
getOpenTags
public OpenTags getOpenTags()
-
getChildBreaks
public ChildBreaks getChildBreaks()
-
-