EldiraSesto

ProductCategoryTreeNode

May 20th, 2019
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.37 KB | None | 0 0
  1. package tree.node;
  2.  
  3. import util.ProductCategory;
  4.  
  5. public class ProductCategoryTreeNode<NODETYPE> extends CategoryTreeNode<NODETYPE, ProductCategory> { //Eldira 11815163
  6.     public ProductCategoryTreeNode(ProductCategory category) {
  7.         super(category);
  8.     }
  9.  
  10.     @Override
  11.     public String getLabel() {
  12.         return this.getCategory().getLabel();
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment