module weather { interface WeatherService{ string getReport(in string city); }; interface HeatWarningWeatherService:WeatherService{ boolean issueWarning(in string city); }; };
package weather; public interface HeatWarningWeatherServiceOperations extends weather.WeatherService{ public boolean issueWarning(java.lang.String city); }
package weather; public interface HeatWarningWeatherServiceOperations extends weather.WeatherServiceOperations{ public java.lang.String getReport(java.lang.String city); public boolean issueWarning(java.lang.String city); }
package weather; public interface HeatWarningWeatherServiceOperations extends weather.WeatherServiceOperations { public boolean issueWarning(java.lang.String city); }
module weather { interface WeatherService { string getReport(in string city); }; interface HeatWarningWeatherService:WeatherService { boolean issueWarning(in string city); }; };
package weather; public interface HeatWarningWeatherService extends HeatWarningWeatherServiceOperations, org.omg.CORBA.Object, org.omg.CORBA.portable.IDLEntity, weather.WeatherService { }
package weather; public interface HeatWarningWeatherService extends HeatWarningWeatherServiceOperations, org.omg.CORBA.Object, org.omg.CORBA.portable.IDLEntity, weather.WeatherService { public boolean issueWarning(java.lang.String city); }
package weather; public interface HeatWarningWeatherService extends HeatWarningWeatherServiceOperations, org.omg.CORBA.Object, org.omg.CORBA.portable.IDLEntity, weather.WeatherServiceOperations { }
{ interface WeatherService { string getReport(in string city); }; interface HeatWarningWeatherService:WeatherService { readonly attribute double warningThreshold; boolean issueWarning(in string city); }; };
package weather; public interface HeatWarningWeatherServiceOperations extends weather.WeatherService { public double warningThreshold(); public boolean issueWarning(java.lang.String city);
} package weather; public interface HeatWarningWeatherServiceOperations extends weather.WeatherServiceOperations { public double warningThreshold(); public boolean issueWarning(java.lang.String city); }