Advertisement
sombriks

Foo.java

Sep 3rd, 2011
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 5 0.23 KB | None | 0 0
  1. package teste;
  2.  
  3. public class Foo {
  4.    
  5.     private double num;
  6.  
  7.     public Foo() {
  8.     }
  9.  
  10.     public Foo(double d) {
  11.         num = d;
  12.     }
  13.  
  14.     public double getNum() {
  15.         return num;
  16.     }
  17.  
  18.     public void setNum(double num) {
  19.         this.num = num;
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement