1 20 21 22 23 24 25 package org.snmp4j.mp; 26 27 33 public class MutableStateReference { 34 35 private StateReference stateReference; 36 37 public MutableStateReference() { 38 } 39 40 public StateReference getStateReference() { 41 return stateReference; 42 } 43 public void setStateReference(StateReference stateReference) { 44 this.stateReference = stateReference; 45 } 46 47 } 48 | Popular Tags |