//This Fish class demonstrates the Java syntax for writing a method //It does not illustrate the design recipe class Fish { int weight; int size; Fish( int weight, int size ) { this.weight = weight; this.size = size; } boolean throwBack() { return this.weight < 10; } }