Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 30th, 2012  |  syntax: None  |  size: 0.21 KB  |  hits: 21  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. package db;
  2.  
  3. public class Task {
  4.     protected String name;
  5.  
  6.     public Task(){
  7.     }
  8.  
  9.     public String getName(){
  10.         return this.name;
  11.     }
  12.  
  13.     public void setName(String name){
  14.         this.name = name;
  15.     }
  16. }