Monday, August 08, 2011

My Queen's program

import java.awt.*;


public class Queen{
     
     private static MyQueen jelly = new MyQueen("july 4, 2011");


     public void showAction(){


          boolean together = true;


          while(together){


               jelly.sweetness.thinkOfRandomAct();
               jelly.sweetness.execute();
               System.out.println(jelly.sweetness.express());


          }
     }
}


private class MyQueen{


     String anniversary;
     Sweetness sweetness;


     public MyQueen(String anniversary){
          anniversary = new String();
          sweetness = new Sweetness();
          this.anniversary = anniversary;
     }


}


private class Sweetness{


     public Sweetness(){


     }


     public void thinkOfRandomAct(){


          //thinks of random act


     }


     public void execute(){


          //do the sweet act :)


     }


     public String express(){


          return "i love you";


     }


}


~would you agree? :) i love you my queen.. :)

3 comments:

  1. comment on me if you actually know what im trying to say.. haha

    ReplyDelete
  2. Umm,yes. You are trying to tell me you love programming. HAHAHA.

    ReplyDelete