1 20 21 package org.snmp4j.agent; 22 23 import org.snmp4j.smi.OID; 24 25 32 public interface MutableMOScope extends MOScope { 33 34 39 void setLowerBound(OID lowerBound); 40 41 48 void setLowerIncluded(boolean lowerIncluded); 49 50 56 void setUpperBound(OID upperBound); 57 58 67 void setUpperIncluded(boolean upperIncluded); 68 69 76 void substractScope(MOScope scope); 77 78 } 79 | Popular Tags |