| 1 |
|
package net.sf.tacos.binding; |
| 2 |
|
|
| 3 |
|
import org.apache.hivemind.Location; |
| 4 |
|
import org.apache.tapestry.IBinding; |
| 5 |
|
import org.apache.tapestry.IComponent; |
| 6 |
|
import org.apache.tapestry.binding.AbstractBindingFactory; |
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
0 |
public class CallbackFunctionBindingFactory extends AbstractBindingFactory { |
| 16 |
|
|
| 17 |
|
public IBinding createBinding(IComponent root, String description, |
| 18 |
|
String expression, Location location) { |
| 19 |
0 |
return new CallbackFunctionBinding(description, getValueConverter(), location, expression); |
| 20 |
|
} |
| 21 |
|
|
| 22 |
|
} |