001: /**
002: * Licensed to the Apache Software Foundation (ASF) under one or more
003: * contributor license agreements. See the NOTICE file distributed with
004: * this work for additional information regarding copyright ownership.
005: * The ASF licenses this file to You under the Apache License, Version 2.0
006: * (the "License"); you may not use this file except in compliance with
007: * the License. You may obtain a copy of the License at
008: *
009: * http://www.apache.org/licenses/LICENSE-2.0
010: *
011: * Unless required by applicable law or agreed to in writing, software
012: * distributed under the License is distributed on an "AS IS" BASIS,
013: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014: * See the License for the specific language governing permissions and
015: * limitations under the License.
016: */package org.apache.geronimo.corba.compiler;
017:
018: import java.math.BigDecimal;
019: import java.rmi.Remote;
020: import java.rmi.RemoteException;
021:
022: import org.apache.geronimo.corba.compiler.other.BlahEx;
023: import org.apache.geronimo.corba.compiler.other.CheeseIDLEntity;
024: import org.apache.geronimo.corba.compiler.other.Generic$Interface;
025:
026: /**
027: * @version $Rev: 451417 $ $Date: 2006-09-29 13:13:22 -0700 (Fri, 29 Sep 2006) $
028: */
029: public interface BeanProperties extends Remote {
030: public void setBooleanabcdef(boolean x) throws RemoteException;
031:
032: public void setCharabcdef(char x) throws RemoteException;
033:
034: public void setByteabcdef(byte x) throws RemoteException;
035:
036: public void setIntabcdef(int x) throws RemoteException;
037:
038: public void setLongabcdef(long x) throws RemoteException;
039:
040: public void setFloatabcdef(float x) throws RemoteException;
041:
042: public void setDoubleabcdef(double x) throws RemoteException;
043:
044: public void setBigDecimalabcdef(BigDecimal x)
045: throws RemoteException;
046:
047: public void setClassObjectabcdef(Class x) throws RemoteException;
048:
049: public void setCORBA_Objectabcdef(org.omg.CORBA.Object x)
050: throws RemoteException;
051:
052: public void setCORBA_Anyabcdef(org.omg.CORBA.Any x)
053: throws RemoteException;
054:
055: public void setCORBA_TypeCodeabcdef(org.omg.CORBA.TypeCode x)
056: throws RemoteException;
057:
058: public void setCheeseIDLEntityabcdef(CheeseIDLEntity x)
059: throws RemoteException;
060:
061: public void setGenericInterfaceabcdef(Generic$Interface x)
062: throws RemoteException;
063:
064: public void setBlahExceptionabcdef(BlahEx x) throws RemoteException;
065:
066: public void setBooExceptionabcdef(BooException x)
067: throws RemoteException;
068:
069: public boolean isBooleanabcdef() throws RemoteException;
070:
071: public char getCharabcdef() throws RemoteException;
072:
073: public byte getByteabcdef() throws RemoteException;
074:
075: public int getIntabcdef() throws RemoteException;
076:
077: public long getLongabcdef() throws RemoteException;
078:
079: public float getFloatabcdef() throws RemoteException;
080:
081: public double getDoubleabcdef() throws RemoteException;
082:
083: public BigDecimal getBigDecimalabcdef() throws RemoteException;
084:
085: public Class getClassObjectabcdef() throws RemoteException;
086:
087: public org.omg.CORBA.Object getCORBA_Objectabcdef()
088: throws RemoteException;
089:
090: public org.omg.CORBA.Any getCORBA_Anyabcdef()
091: throws RemoteException;
092:
093: public org.omg.CORBA.TypeCode getCORBA_TypeCodeabcdef()
094: throws RemoteException;
095:
096: public CheeseIDLEntity getCheeseIDLEntityabcdef()
097: throws RemoteException;
098:
099: public Generic$Interface getGenericInterfaceabcdef()
100: throws RemoteException;
101:
102: public BlahEx getBlahExceptionabcdef() throws RemoteException;
103:
104: public BooException getBooExceptionabcdef() throws RemoteException;
105:
106: // special
107: public int getWithArgumentabcdef(int x) throws RemoteException;
108:
109: public int getWithSetReturningabcdef() throws RemoteException;
110:
111: public int setWithSetReturningabcdef(int x) throws RemoteException;
112:
113: public int getWithSetOfDifferentTypeabcdef() throws RemoteException;
114:
115: public void setWithSetOfDifferentTypeabcdef(long x)
116: throws RemoteException;
117:
118: public int getThrowsUserExceptionabcdef() throws RemoteException,
119: Exception;
120:
121: public void setThrowsUserExceptionabcdef(int x)
122: throws RemoteException, Exception;
123:
124: public int getOverridenSetabcdef() throws RemoteException;
125:
126: public void setOverridenSetabcdef(int x) throws RemoteException;
127:
128: public void setOverridenSetabcdef(long x) throws RemoteException;
129:
130: public void setOnlyabcdef(int x) throws RemoteException;
131:
132: public int getOverridenGetabcdef() throws RemoteException;
133:
134: public int getOverridenGetabcdef(int x) throws RemoteException;
135:
136: public int getUPPERCASEabcdef() throws RemoteException;
137:
138: public int get() throws RemoteException;
139:
140: public int get_collisionabcdef() throws RemoteException;
141:
142: public int getA() throws RemoteException;
143: }
|