~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to external/ikvm/openjdk/icedtea/rt/com/sun/jmx/snmp/SnmpOid.java

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* SnmpOid.java -- stub file. 
 
2
   Copyright (C) 2007 Red Hat, Inc.
 
3
 
 
4
This file is part of IcedTea.
 
5
 
 
6
IcedTea is free software; you can redistribute it and/or
 
7
modify it under the terms of the GNU General Public License as published by
 
8
the Free Software Foundation, version 2.
 
9
 
 
10
IcedTea is distributed in the hope that it will be useful,
 
11
but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
13
General Public License for more details.
 
14
 
 
15
You should have received a copy of the GNU General Public License
 
16
along with IcedTea; see the file COPYING.  If not, write to
 
17
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 
18
02110-1301 USA.
 
19
 
 
20
Linking this library statically or dynamically with other modules is
 
21
making a combined work based on this library.  Thus, the terms and
 
22
conditions of the GNU General Public License cover the whole
 
23
combination.
 
24
 
 
25
As a special exception, the copyright holders of this library give you
 
26
permission to link this library with independent modules to produce an
 
27
executable, regardless of the license terms of these independent
 
28
modules, and to copy and distribute the resulting executable under
 
29
terms of your choice, provided that you also meet, for each linked
 
30
independent module, the terms and conditions of the license of that
 
31
module.  An independent module is a module which is not derived from
 
32
or based on this library.  If you modify this library, you may extend
 
33
this exception to your version of the library, but you are not
 
34
obligated to do so.  If you do not wish to do so, delete this
 
35
exception statement from your version.
 
36
*/
 
37
 
 
38
package com.sun.jmx.snmp;
 
39
 
 
40
public class SnmpOid extends SnmpValue {
 
41
 
 
42
        public int componentCount = 0;
 
43
        public long[] components;
 
44
        
 
45
        public SnmpOid() {
 
46
        }
 
47
        
 
48
        public SnmpOid(long[] ls) {
 
49
                throw new RuntimeException("Not implemented.");
 
50
                // TODO Auto-generated constructor stub
 
51
        }
 
52
 
 
53
        public SnmpOid(String dotAddress) {
 
54
                throw new RuntimeException("Not implemented.");
 
55
                // TODO Auto-generated constructor stub
 
56
        }
 
57
 
 
58
        public SnmpOid(long b1, long b2, long b3, long b4) {
 
59
                throw new RuntimeException("Not implemented.");
 
60
                // TODO Auto-generated constructor stub
 
61
        }
 
62
 
 
63
        public SnmpOid(long value) {
 
64
                throw new RuntimeException("Not implemented.");
 
65
                // TODO Auto-generated constructor stub
 
66
        }
 
67
 
 
68
        @Override
 
69
        public SnmpValue duplicate() {
 
70
                throw new RuntimeException("Not implemented.");
 
71
                // TODO Auto-generated method stub
 
72
 
 
73
        }
 
74
 
 
75
        @Override
 
76
        public String getTypeName() {
 
77
                throw new RuntimeException("Not implemented.");
 
78
                // TODO Auto-generated method stub
 
79
 
 
80
        }
 
81
 
 
82
        @Override
 
83
        public SnmpOid toOid() {
 
84
                throw new RuntimeException("Not implemented.");
 
85
                // TODO Auto-generated method stub
 
86
 
 
87
        }
 
88
 
 
89
        public long[] longValue() {
 
90
                throw new RuntimeException("Not implemented.");
 
91
                // TODO Auto-generated method stub
 
92
 
 
93
        }
 
94
 
 
95
        public int getLength() {
 
96
                throw new RuntimeException("Not implemented.");
 
97
                // TODO Auto-generated method stub
 
98
 
 
99
        }
 
100
 
 
101
        public void append(SnmpOid source) {
 
102
                throw new RuntimeException("Not implemented.");
 
103
                // TODO Auto-generated method stub
 
104
                
 
105
        }
 
106
 
 
107
        public void append(int length) {
 
108
                throw new RuntimeException("Not implemented.");
 
109
                // TODO Auto-generated method stub
 
110
                
 
111
        }
 
112
 
 
113
        public int compareTo(SnmpOid oid) {
 
114
                throw new RuntimeException("Not implemented.");
 
115
                // TODO Auto-generated method stub
 
116
 
 
117
        }
 
118
 
 
119
        public long[] longValue(boolean b) {
 
120
                throw new RuntimeException("Not implemented.");
 
121
                // TODO Auto-generated method stub
 
122
 
 
123
        }
 
124
 
 
125
        public long getOidArc(int depth) throws SnmpStatusException {
 
126
                throw new RuntimeException("Not implemented.");
 
127
                // TODO Auto-generated method stub
 
128
 
 
129
        }
 
130
 
 
131
        public Byte[] toByte() {
 
132
                throw new RuntimeException("Not implemented.");
 
133
                // TODO Auto-generated method stub
 
134
 
 
135
        }
 
136
 
 
137
}