Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
- package javaapplication30;
- /**
- *
- * @author fmi
- */
- public class User {
- private Figure figure;
- public User(){
- }
- public User(Figure figure){
- this.figure = figure;
- }
- public void setFigure(Figure figure) {
- this.figure = figure;
- }
- public void displayPerimeter(){
- System.out.println(figure.calculatePerimeter());
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement