I know what I did last year
by John Goalby
   
      /** My year in review. */

    package com.org.goalby.john.2001;

    public class YearInReview implements SocialNorms
    {
        /** How well did I do with last years resolutions */
        public Resolutions getLastYearResolutionsKept()
        {
            return null;
        }

        /** Return this years resolutions which will no doubt
            fall by the wayside */

        public Resolutions getThisYearResolutions()
        {
            Resolutions resolutions = new Resolutions();

            resolutions.add ("Workout more.");
            resolutions.add ("Become more edumacated.");
            resolutions.add ("Play a musical instrument.");

            return resolutions;
        }

        /** Some of the movies I had an opinion about */
        public Movies getMovieReviews()
        {
            Movies movies = new Movies();

            movies.add ("Magnolia", "Weird. Dissapointing ending.
                Excellent soundtrack.");
            movies.add ("Quills", "Not really sure why but I liked
                this movie a lot.");
            movies.add ("Moulin Rouge", "Saw in the theater and loved
                it!");
            movies.add ("Memento", "Excellent idea very well done, not
                so keen on the plot.");

            return movies;
        }

        /** Things where I left the house and got some culture */
        public Events getEventsReviews()
        {
            Events events = new Events();

            movies.add ("Brian Greene", "Now even I can understand the
                theory of relativity.");
            movies.add ("Depeche Mode", "David Gahan can move! I can
                still hear Black Celebration!");
            movies.add ("Elton John and Billy Joel", "Billy was excellent
                and Elton looked old.");
            movies.add ("Feet of Flames", "Pretty excellent show, glad I
                saw it.");

            return movies;
        }

        /** Reading makes you smarter */
        public Books getBookReviews()
        {
            Books books = new Books();

            books.add ("Numerous technical books", "Way too many and way too
                boring for most people!");

            return books;
        }
    }
 
   

© Copyright 2002. All materials belong to the person who created them. Please respect that.