module BookShopModule { interface BookStoreInv { long getNumCopiesOfBook(in string title); boolean isBookInStock(in string title); }; interface Pricer { float priceBook(in string title); }; };
client.Client
printBookInfo()
getNumCopiesOfBook()
isBookInStock()
priceBook()
BookStoreInv
Pricer
System.out
> java client.Client XML
BookShopModule.BookStoreInv
BookShopModule.Pricer