Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package tree.node;
- import util.ProductCategory;
- public class ProductCategoryTreeNode<NODETYPE> extends CategoryTreeNode<NODETYPE, ProductCategory> { //Eldira 11815163
- public ProductCategoryTreeNode(ProductCategory category) {
- super(category);
- }
- @Override
- public String getLabel() {
- return this.getCategory().getLabel();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment