Developer Tools
JDeveloper
In the source editor, after the comment line:
// TODO: Call methods on productsJavaServiceFacade here...
Add the following code:
List<ProductsBase> prodList = productsJavaServiceFacade.getProductsBaseFindAll();
for (ProductsBase prod : prodList) {
System.out.println(prod.getProductName());
}
Instead of typing the sample code, you can copy the code in this window and then paste it into the source editor.
Copyright © 1997, 2009, Oracle. All rights reserved.