Last active
August 18, 2018 07:37
-
-
Save arjunsk/11d767cb157acbe72b5da94c11688798 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package solver; | |
import decorators.BasicWindow; | |
import decorators.HorizontalScrollDecorator; | |
import decorators.IWindow; | |
import decorators.VerticalScrollDecorator; | |
public class DecoratorDriver { | |
public static void main(String args[]){ | |
IWindow windows_with_horizontal_and_vertical_scroll = //Note IWindow | |
new VerticalScrollDecorator( // Note how the constructors are structured | |
new HorizontalScrollDecorator( | |
new BasicWindow() | |
) | |
); | |
System.out.println( windows_with_horizontal_and_vertical_scroll.render(" DEMO ") ); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment