Skip to content

Instantly share code, notes, and snippets.

@skatldjs
Created December 27, 2010 11:38
Show Gist options
  • Save skatldjs/756071 to your computer and use it in GitHub Desktop.
Save skatldjs/756071 to your computer and use it in GitHub Desktop.
class Factory {
public Product createProduct(String name){
return new Product(name);
// 구현부분
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment