KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jmanage > testapp > mbeans > PrimitiveDataTypeTestMBean


1 /**
2  * Copyright 2004-2005 jManage.org
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16 package org.jmanage.testapp.mbeans;
17
18 /**
19  * Created by IntelliJ IDEA.
20  * User: Administrator
21  * Date: Dec 23, 2004
22  * Time: 1:30:12 PM
23  * To change this template use Options | File Templates.
24  */

25 public interface PrimitiveDataTypeTestMBean {
26
27     public int getInt();
28     public void setInt(int a);
29     public short getShort();
30     public void setShort(short s);
31     public long getLong();
32     public void setLong(long l);
33     public float getFloat();
34     public void setFloat(float f);
35     public double getDouble();
36     public void setDouble(double d);
37     public char getChar();
38     public void setChar(char c);
39     public boolean getBoolean();
40     public void setBoolean(boolean bo);
41     public boolean getBoolean2();
42     public void setBoolean2(boolean bo);
43     public byte getByte();
44     public void setByte(byte b);
45 }
46
Popular Tags