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 LiteralBindingFactory extends AbstractBindingFactory 29 { 30 31 public IBinding createBinding(IComponent root, String description, String path, 32 Location location) 33 { 34 return new LiteralBinding(description, getValueConverter(), location, path); 35 } 36 37 } | Popular Tags |