public ContextRefBinding() {
super("context-ref");
}
public Object parse(Element element, Parse parse, Parser parser) {
ContextRefDescriptor descriptor = new ContextRefDescriptor();
if (element.hasAttribute("context-name")) {
descriptor.setContextName(element.getAttribute("context-name"));
}
return descriptor;
}