Skip to content

Instantly share code, notes, and snippets.

@yuki2006
Created September 30, 2013 15:20
Show Gist options
  • Save yuki2006/6765365 to your computer and use it in GitHub Desktop.
Save yuki2006/6765365 to your computer and use it in GitHub Desktop.
if (args.length==1){
Builder builder;
if (args[0].equals("plain"))
{
builder=new TextBuilder();
}else{
builder=new HTMLBuilder();
}
Director director=new Director(builder);
director.construct();
String result=builder.getResult();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment