1 15 package org.apache.tapestry.binding; 16 17 import org.apache.hivemind.Location; 18 import org.apache.tapestry.IBinding; 19 import org.apache.tapestry.IComponent; 20 21 28 public class ComponentBindingFactory extends AbstractBindingFactory 29 { 30 public IBinding createBinding(IComponent root, String description, String path, 31 Location location) 32 { 33 return new ComponentBinding(description, getValueConverter(), location, root, path); 34 } 35 } | Popular Tags |