FileDocCategorySizeDatePackage
SnmpEntryOid.javaAPI DocJava SE 5 API956Fri Aug 26 14:55:04 BST 2005com.sun.jmx.snmp.agent

SnmpEntryOid

public class SnmpEntryOid extends com.sun.jmx.snmp.SnmpOid
This class only adds a new constructor to SnmpOid...

Fields Summary
Constructors Summary
public SnmpEntryOid(long[] oid, int start)
Constructs a new SnmpOid from the specified component array, starting at given position.

param
oid The original OID array
param
start The position at which to begin.

        final int subLength = oid.length - start;
        final long[] subOid = new long[subLength];
	java.lang.System.arraycopy(oid, start, subOid, 0, subLength) ;
	components = subOid;
	componentCount = subLength;
    
Methods Summary