Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Letter.java MrG 2011.1006
- public class Letter
- {
- private String from;
- private String body;
- private String to;
- public Letter(String from, String to)
- {
- this.from = from;
- this.body = "\n";
- this.to = to;
- }
- public void addLine(String line)
- {
- body = body + line + "\n";
- }
- public String getText()
- {
- return "Dear " + to + ",\n" + body + "\nSincerely, \n" + from;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement