Package org.jboss.test.audit.report
Class SectionItem
- java.lang.Object
-
- org.jboss.test.audit.report.SectionItem
-
- All Implemented Interfaces:
Comparable<SectionItem>
- Direct Known Subclasses:
AssertionGroup,AuditAssertion
public abstract class SectionItem extends Object implements Comparable<SectionItem>
Base abstract class for items found within a section- Author:
- Shane Bryzak
-
-
Constructor Summary
Constructors Constructor Description SectionItem()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract intcompareTo(SectionItem other)StringgetSection()StringgetText()voidsetSection(String section)voidsetText(String text)StringtoString()
-
-
-
Method Detail
-
getSection
public String getSection()
-
setSection
public void setSection(String section)
-
getText
public String getText()
-
setText
public void setText(String text)
-
compareTo
public abstract int compareTo(SectionItem other)
- Specified by:
compareToin interfaceComparable<SectionItem>
-
-