Package org.opennms.netmgt.model
Interface AttributeStatisticVisitorWithResults
-
- All Superinterfaces:
AttributeStatisticVisitor
- All Known Implementing Classes:
BottomNAttributeStatisticVisitor
,TopNAttributeStatisticVisitor
public interface AttributeStatisticVisitorWithResults extends AttributeStatisticVisitor
AttributeStatisticVisitorWithResults interface.
- Version:
- $Id: $
- Author:
- DJ Gregor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
afterPropertiesSet()
afterPropertiesSetjava.lang.Integer
getCount()
getCountjava.util.SortedSet<AttributeStatistic>
getResults()
getResultsvoid
setCount(java.lang.Integer count)
setCount-
Methods inherited from interface org.opennms.netmgt.model.AttributeStatisticVisitor
visit
-
-
-
-
Method Detail
-
getResults
java.util.SortedSet<AttributeStatistic> getResults()
getResults
- Returns:
- a
SortedSet
object.
-
setCount
void setCount(java.lang.Integer count)
setCount
- Parameters:
count
- aInteger
object.
-
getCount
java.lang.Integer getCount()
getCount
- Returns:
- a
Integer
object.
-
afterPropertiesSet
void afterPropertiesSet()
afterPropertiesSet
-
-