Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package tree;
- import rbvs.product.IProduct;
- import tree.node.ITreeNode;
- import tree.node.ProductTreeNode;
- public class ProductTree extends GenericTree<IProduct> { //Eldira 11815163
- public ProductTree(ITreeNode<IProduct> root) {
- super(root);
- }
- public ProductTree(IProduct product) {
- this(new ProductTreeNode(product));
- }
- public ProductTree() {
- super();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment