1 28 package net.sf.jasperreports.engine; 29 30 31 43 public interface JRHyperlink 44 { 45 46 47 51 public static final byte HYPERLINK_TYPE_NONE = 1; 52 53 58 public static final byte HYPERLINK_TYPE_REFERENCE = 2; 59 60 65 public static final byte HYPERLINK_TYPE_LOCAL_ANCHOR = 3; 66 67 70 public static final byte HYPERLINK_TYPE_LOCAL_PAGE = 4; 71 72 78 public static final byte HYPERLINK_TYPE_REMOTE_ANCHOR = 5; 79 80 84 public static final byte HYPERLINK_TYPE_REMOTE_PAGE = 6; 85 86 87 90 public static final byte HYPERLINK_TYPE_NULL = 0; 91 92 93 99 public static final byte HYPERLINK_TYPE_CUSTOM = 7; 100 101 102 105 public static final byte HYPERLINK_TARGET_SELF = 1; 106 107 110 public static final byte HYPERLINK_TARGET_BLANK = 2; 111 112 113 124 public byte getHyperlinkType(); 125 126 127 131 public byte getHyperlinkTarget(); 132 133 134 138 public JRExpression getHyperlinkReferenceExpression(); 139 140 141 144 public JRExpression getHyperlinkAnchorExpression(); 145 146 147 151 public JRExpression getHyperlinkPageExpression(); 152 153 154 163 public String getLinkType(); 164 165 166 174 public JRHyperlinkParameter[] getHyperlinkParameters(); 175 176 177 182 public JRExpression getHyperlinkTooltipExpression(); 183 184 } 185 | Popular Tags |