001: /*
002: * Copyright (C) 2005 - 2008 JasperSoft Corporation. All rights reserved.
003: * http://www.jaspersoft.com.
004: *
005: * Unless you have purchased a commercial license agreement from JasperSoft,
006: * the following license terms apply:
007: *
008: * This program is free software; you can redistribute it and/or modify
009: * it under the terms of the GNU General Public License version 2 as published by
010: * the Free Software Foundation.
011: *
012: * This program is distributed WITHOUT ANY WARRANTY; and without the
013: * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
014: * See the GNU General Public License for more details.
015: *
016: * You should have received a copy of the GNU General Public License
017: * along with this program; if not, see http://www.gnu.org/licenses/gpl.txt
018: * or write to:
019: *
020: * Free Software Foundation, Inc.,
021: * 59 Temple Place - Suite 330,
022: * Boston, MA USA 02111-1307
023: *
024: *
025: *
026: *
027: * HyperLinkableReportElement.java
028: *
029: * Created on 26 maggio 2003, 10.47
030: *
031: */
032:
033: package it.businesslogic.ireport;
034:
035: /**
036: *
037: * @author Administrator
038: */
039: public interface HyperLinkableReportElement {
040: /** Getter for property hyperlinkType.
041: * @return Value of property hyperlinkType.
042: *
043: */
044: public java.lang.String getHyperlinkType();
045:
046: /** Setter for property hyperlinkType.
047: * @param hyperlinkType New value of property hyperlinkType.
048: *
049: */
050: public void setHyperlinkType(java.lang.String hyperlinkType);
051:
052: /** Getter for property anchorNameExpression.
053: * @return Value of property anchorNameExpression.
054: *
055: */
056: public java.lang.String getAnchorNameExpression();
057:
058: /** Setter for property anchorNameExpression.
059: * @param anchorNameExpression New value of property anchorNameExpression.
060: *
061: */
062: public void setAnchorNameExpression(
063: java.lang.String anchorNameExpression);
064:
065: /** Getter for property hyperlinkReferenceExpression.
066: * @return Value of property hyperlinkReferenceExpression.
067: *
068: */
069: public java.lang.String getHyperlinkReferenceExpression();
070:
071: /** Setter for property hyperlinkReferenceExpression.
072: * @param hyperlinkReferenceExpression New value of property hyperlinkReferenceExpression.
073: *
074: */
075: public void setHyperlinkReferenceExpression(
076: java.lang.String hyperlinkReferenceExpression);
077:
078: /** Getter for property hyperlinkAnchorExpression.
079: * @return Value of property hyperlinkAnchorExpression.
080: *
081: */
082: public java.lang.String getHyperlinkAnchorExpression();
083:
084: /** Setter for property hyperlinkAnchorExpression.
085: * @param hyperlinkAnchorExpression New value of property hyperlinkAnchorExpression.
086: *
087: */
088: public void setHyperlinkAnchorExpression(
089: java.lang.String hyperlinkAnchorExpression);
090:
091: /** Getter for property hyperlinkPageExpression.
092: * @return Value of property hyperlinkPageExpression.
093: *
094: */
095: public java.lang.String getHyperlinkPageExpression();
096:
097: /** Setter for property hyperlinkPageExpression.
098: * @param hyperlinkPageExpression New value of property hyperlinkPageExpression.
099: *
100: */
101: public void setHyperlinkPageExpression(
102: java.lang.String hyperlinkPageExpression);
103:
104: /** Getter for property hyperlinkTarget.
105: * @return Value of property hyperlinkTarget.
106: *
107: */
108: public java.lang.String getHyperlinkTarget();
109:
110: /** Setter for property hyperlinkTarget.
111: * @param hyperlinkTarget New value of property hyperlinkTarget.
112: *
113: */
114: public void setHyperlinkTarget(java.lang.String hyperlinkTarget);
115:
116: /** Getter for property bookmarkLevel.
117: * @return Value of property bookmarkLevel.
118: *
119: */
120: public int getBookmarkLevel();
121:
122: /** Setter for property bookmarkLevel.
123: * @param bookmarkLevel New value of property bookmarkLevel.
124: *
125: */
126: public void setBookmarkLevel(int bookmarkLevel);
127:
128: /** Getter for property TooltipExpression.
129: * @return Value of property linkParameters.
130: *
131: */
132: public String getTooltipExpression();
133:
134: /** Setter for property TooltipExpression.
135: * @param bookmarkLevel New value of property linkParameters.
136: *
137: */
138: public void setTooltipExpression(String s);
139:
140: /** Getter for property linkParameters.
141: * @return Value of property linkParameters.
142: *
143: */
144: public java.util.List getLinkParameters();
145:
146: /** Setter for property linkParameters.
147: * @param bookmarkLevel New value of property linkParameters.
148: *
149: */
150: public void setLinkParameters(java.util.List linkParameters);
151: }
|