/* * @topic T00975 Using "this" reference to pass object to a method * @brief LaserPrinter class and print( Product ) method */ package objectdemo; public class LaserPrinter { public LaserPrinter( String host ) { //... } public void print( Product book ) { System.out.println( book.getDescription()); } }//class LaserPrinter