public class JRHyperlinkFactory extends JRBaseFactory
{
public Object createObject(Attributes atts) throws Exception
{
JRDesignHyperlink link = new JRDesignHyperlink();
link.setLinkType(atts.getValue(JRXmlConstants.ATTRIBUTE_hyperlinkType));
link.setLinkTarget(atts.getValue(JRXmlConstants.ATTRIBUTE_hyperlinkTarget));
return link;
}