To krosenvold:
I think that you haven't understood my intention. Maybe I should make myself more clear.
Assumptions are that Tree and TreeBuilder are in the same package.
As you can see Tree constructor and freeze() method have package level access. So you can't create it outside of the package and you can't freeze it outside of package as well.
The only way to do that is via build() method. Only TreeBuilder can create Tree using build method which is synchronized.
Now I even realized that you may even make it simpler removing readonly flag at all and changing Tree.addChild() method to package visibility as well. Hence you will get a tree which has no public mutators only accessors.
Like I said Tree does no synchronization. TreeBuilder is where your synchronization takes place. Have a closer look on the accessors and mutators. Look where public and package modifiers are located and you will see that the only way to modify the tree is when you are in the same package so only tree builder is capable of doing it.
public class Tree<T extends Filterable>{
private final T data;
private Tree<T> parent;
private List<Tree<T>> children;
private List<FilterChain<T>> filterChain;
private boolean readonly = false;
/*package*/ Tree(T data) {...}
/*package*/ Tree(Tree<T> parent, T data) {...}
/*package*/ void addChild(Tree<T> child){
children.add(child);
}
public List<?> getResults(){
return data.returnResults(filterChain);
}
}
public class TreeBuilder<T>{
public synchronized TreeNode createRoot(T data);
public synchronized void addSubElement(TreeNode parentNode ,T data);
public synchronized void addFilter(TreeNode node, Filter<T> filter);
public Tree<T> synchronized build(){
Tree<T> tree= ...
//build your tree
//build filter chain for specific tree node
return tree;
}
}