I know what is the meaning of PECS.
Producer Extends,Consumer Super.
the thing is how would I know if its a consumer or producer?
Also does this code follow the "PECS"
public class Tree<T> {
    //List of branches for this tree
    private List<Tree<? super T>> branch = new ArrayList<Tree<? super T>>();
    public Tree(T t){ this.t = t; }
    public void addBranch(Tree< ? super T> src){ branch.add(src); }
    public Tree<? extends T> getBranch(int branchNum){
        return (Tree<? extends T>) branch.get(branchNum);
    }
    private T t;
}
 
     
     
    