Skip to content

Instantly share code, notes, and snippets.

@kevindoran
Created May 29, 2012 22:24
Show Gist options
  • Save kevindoran/2831163 to your computer and use it in GitHub Desktop.
Save kevindoran/2831163 to your computer and use it in GitHub Desktop.
Dynamic Category Menu Model
public interface Category {
String getName();
Collection<Category> getChildCategories();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment