Advertisement
wingman007

Java - JavaApplication30 User.java

Dec 13th, 2013
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.52 KB | None | 0 0
  1. /*
  2.  * To change this template, choose Tools | Templates
  3.  * and open the template in the editor.
  4.  */
  5. package javaapplication30;
  6.  
  7. /**
  8.  *
  9.  * @author fmi
  10.  */
  11. public class User {
  12.    
  13.     private Figure figure;
  14.    
  15.     public User(){
  16.     }
  17.    
  18.     public User(Figure figure){
  19.         this.figure = figure;
  20.     }
  21.  
  22.     public void setFigure(Figure figure) {
  23.         this.figure = figure;
  24.     }
  25.    
  26.     public void displayPerimeter(){
  27.         System.out.println(figure.calculatePerimeter());
  28.     }
  29.    
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement