⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 snmpentryoid.java

📁 Mobile 应用程序使用 Java Micro Edition (Java ME) 平台
💻 JAVA
字号:
/*  * @(#)file      SnmpEntryOid.java  * @(#)author    Sun Microsystems, Inc.  * @(#)version   1.5  * @(#)date      08/09/12  *  * Copyright 2006 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -