// LANDSCAPE GARDENING QUOTE APPLICATION CLASS // Frans Coenen // University of Liverpool // 18 April 2013 import java.util.*; class LandsGardQuoteApp { // ------------------- FIELDS ------------------------ /* ------ None ------ */ // ------------------ METHODS ------------------------ /** Main method. */ public static void main(String[] args) { // Create an instance of the class LansGardQuote LandsGardQuote newLGQ = new LandsGardQuote(); // Prepare new quote newLGQ.prepareAnewQuote(); } }