snmpentryoid.java

来自「JAVA的一些源码 JAVA2 STANDARD EDITION DEVELO」· Java 代码 · 共 35 行

JAVA
35
字号
/*  * @(#)file      SnmpEntryOid.java  * @(#)author    Sun Microsystems, Inc.  * @(#)version   1.4  * @(#)date      07/09/25  *  * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package com.sun.jmx.snmp.agent;import com.sun.jmx.snmp.SnmpOid;/** * This class only adds a new constructor to SnmpOid... * **/ class SnmpEntryOid extends SnmpOid {    /**     * Constructs a new <CODE>SnmpOid</CODE> from the specified      * component array, starting at given position.     *     * @param oid   The original OID array     * @param start The position at which to begin.     *     **/    public SnmpEntryOid(long[] oid, int start) {        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;    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?