Advertisement
Guest User

Untitled

a guest
Dec 10th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.21 KB | None | 0 0
  1. class CCircle implements Shape {
  2.  
  3.     private Circle shape;
  4.  
  5.     public getShape() {
  6.         return shape;
  7.     }  
  8. }
  9.  
  10. // добавляю:
  11. Shape shape = new CCircle;
  12. shape.getShape().setOnScrollChanged(...);
  13. list.add(shape);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement