Guest User

Untitled

a guest
Jul 20th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. public class DecoratedWindowTest {
  2. public static void main(String[] args) {
  3. // create a decorated Window with horizontal and vertical scrollbars
  4. Window decoratedWindow = new HorizontalScrollBarDecorator (
  5. new VerticalScrollBarDecorator(new SimpleWindow()));
  6.  
  7. // print the Window's description
  8. System.out.println(decoratedWindow.getDescription());
  9. }
  10. }
Add Comment
Please, Sign In to add comment