/**
**
** MiddCor-C# DemoJava
**			CORBA Solution for .Net with C# Language mapping							 
**																			 
**				
** Copyright:
**			Middsol GmbH, Hamburg
**			Germany  2004
**			www.middsol.com
**			info@middsol.com	
**
*/

package JavaNames;

import java.rmi.Remote;
import java.rmi.RemoteException;

public interface Greetings extends Remote  {

	String hello( String name) 
		throws RemoteException;


	boolean _foo() 
		throws RemoteException;

	int  FeeIn$US() 
		throws RemoteException;



}	

