package Counter; |
public interface Count extends org.omg.CORBA.Object { |
/* Attribute Writer */ |
public void sum(int sum); |
/* Attribute Reader */ |
public int sum(); |
/*Implement Remote Operation */ |
public int increment(); |
} |
Note: The IDL type long was converted to Java type int |
Note: This code is created automatically by IDL->Java pre-compiler from the IDL spec |
Note: All client programs invoking the remote count object must use this as interface definition for remote object |