package love;
public class JavaRomance {
__public String man;
__private String woman;
_public void newJavaRomance(String me, String you) {
__this.man = me;
__this.woman = you;
_}
_private void addLover(String he) {
___this.man = he;
_}
_private String doYouLove(String him) {
__if(this.man.equals(him)) {
___return "Yes.";
__}
__else {
___return "No.";
__}
_}
_private boolean sheLoves(String me) {
__if(this.man.equals(me)) {
___return true;
__}
__else {
___return false;
__}
_}
_// This is working code. And it's just the beginning.
}
Saturday, January 27, 2007
Subscribe to:
Post Comments (Atom)
2 comments:
_private boolean makeHerLoveMeAgain(){
__return false;
__}
_//This is not a dummy implementation!
/**
/* huono ohjelmointityyli:
/* die untere geschweifte Klammer ist
/* zu weit eingerückt!
*/
public String whoPostedThis() {
_return "Stefan."
}
Post a Comment