Please, create an instance of PrototypeIPhone154 and invoke method printMinCost.
public class IPhone154 {
static double minCost = PriceBook.PrototypeIPhone154; // lookup a value from an external price book
static class PrototypeIPhone154 {
void printMinCost() {
System.out.println("The min cost of IPhone154 should be: $" + minCost);
}
}
}