KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > it > businesslogic > ireport > HyperLinkableReportElement


1 /*
2  * Copyright (C) 2005 - 2006 JasperSoft Corporation. All rights reserved.
3  * http://www.jaspersoft.com.
4  *
5  * Unless you have purchased a commercial license agreement from JasperSoft,
6  * the following license terms apply:
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 as published by
10  * the Free Software Foundation.
11  *
12  * This program is distributed WITHOUT ANY WARRANTY; and without the
13  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14  * See the GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, see http://www.gnu.org/licenses/gpl.txt
18  * or write to:
19  *
20  * Free Software Foundation, Inc.,
21  * 59 Temple Place - Suite 330,
22  * Boston, MA USA 02111-1307
23  *
24  *
25  *
26  *
27  * HyperLinkableReportElement.java
28  *
29  * Created on 26 maggio 2003, 10.47
30  *
31  */

32
33 package it.businesslogic.ireport;
34
35 /**
36  *
37  * @author Administrator
38  */

39 public interface HyperLinkableReportElement {
40     /** Getter for property hyperlinkType.
41          * @return Value of property hyperlinkType.
42          *
43          */

44         public java.lang.String JavaDoc getHyperlinkType();
45         
46         /** Setter for property hyperlinkType.
47          * @param hyperlinkType New value of property hyperlinkType.
48          *
49          */

50         public void setHyperlinkType(java.lang.String JavaDoc hyperlinkType);
51         
52         /** Getter for property anchorNameExpression.
53          * @return Value of property anchorNameExpression.
54          *
55          */

56         public java.lang.String JavaDoc getAnchorNameExpression();
57         
58         /** Setter for property anchorNameExpression.
59          * @param anchorNameExpression New value of property anchorNameExpression.
60          *
61          */

62         public void setAnchorNameExpression(java.lang.String JavaDoc anchorNameExpression);
63         
64         /** Getter for property hyperlinkReferenceExpression.
65          * @return Value of property hyperlinkReferenceExpression.
66          *
67          */

68         public java.lang.String JavaDoc getHyperlinkReferenceExpression();
69         
70         /** Setter for property hyperlinkReferenceExpression.
71          * @param hyperlinkReferenceExpression New value of property hyperlinkReferenceExpression.
72          *
73          */

74         public void setHyperlinkReferenceExpression(java.lang.String JavaDoc hyperlinkReferenceExpression);
75         
76         /** Getter for property hyperlinkAnchorExpression.
77          * @return Value of property hyperlinkAnchorExpression.
78          *
79          */

80         public java.lang.String JavaDoc getHyperlinkAnchorExpression();
81         
82         /** Setter for property hyperlinkAnchorExpression.
83          * @param hyperlinkAnchorExpression New value of property hyperlinkAnchorExpression.
84          *
85          */

86         public void setHyperlinkAnchorExpression(java.lang.String JavaDoc hyperlinkAnchorExpression);
87         
88         /** Getter for property hyperlinkPageExpression.
89          * @return Value of property hyperlinkPageExpression.
90          *
91          */

92         public java.lang.String JavaDoc getHyperlinkPageExpression() ;
93         
94         /** Setter for property hyperlinkPageExpression.
95          * @param hyperlinkPageExpression New value of property hyperlinkPageExpression.
96          *
97          */

98         public void setHyperlinkPageExpression(java.lang.String JavaDoc hyperlinkPageExpression);
99         
100         /** Getter for property hyperlinkTarget.
101          * @return Value of property hyperlinkTarget.
102          *
103          */

104         public java.lang.String JavaDoc getHyperlinkTarget() ;
105         
106         /** Setter for property hyperlinkTarget.
107          * @param hyperlinkTarget New value of property hyperlinkTarget.
108          *
109          */

110         public void setHyperlinkTarget(java.lang.String JavaDoc hyperlinkTarget);
111         
112         /** Getter for property bookmarkLevel.
113          * @return Value of property bookmarkLevel.
114          *
115          */

116         public int getBookmarkLevel() ;
117         
118         /** Setter for property bookmarkLevel.
119          * @param bookmarkLevel New value of property bookmarkLevel.
120          *
121          */

122         public void setBookmarkLevel(int bookmarkLevel);
123         
124         /** Getter for property linkParameters.
125          * @return Value of property linkParameters.
126          *
127          */

128         public java.util.List JavaDoc getLinkParameters() ;
129         
130         /** Setter for property linkParameters.
131          * @param bookmarkLevel New value of property linkParameters.
132          *
133          */

134         public void setLinkParameters(java.util.List JavaDoc linkParameters);
135 }
136
Popular Tags