Java Doc for JRDesignHyperlink.java in  » Report » jasperreports-2.0.1 » net » sf » jasperreports » engine » design » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Report » jasperreports 2.0.1 » net.sf.jasperreports.engine.design 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   net.sf.jasperreports.engine.base.JRBaseHyperlink
      net.sf.jasperreports.engine.design.JRDesignHyperlink

JRDesignHyperlink
public class JRDesignHyperlink extends JRBaseHyperlink (Code)
Stand-alone implementation of JRHyperlink JRHyperlink which should be used for report design purposes.
author:
   Lucian Chirita (lucianc@users.sourceforge.net)
version:
   $Id: JRDesignHyperlink.java 1368 2006-09-01 12:01:52Z lucianc $



Constructor Summary
public  JRDesignHyperlink()
    

Method Summary
public  voidaddHyperlinkParameter(JRHyperlinkParameter parameter)
     Adds a custom hyperlink parameter.
public  JRHyperlinkParameter[]getHyperlinkParameters()
    
public  ListgetHyperlinkParametersList()
     Returns the list of custom hyperlink parameters.
public  voidremoveHyperlinkParameter(JRHyperlinkParameter parameter)
     Removes a custom hyperlink parameter.
public  voidremoveHyperlinkParameter(String parameterName)
     Removes a custom hyperlink parameter.
public  voidsetHyperlinkAnchorExpression(JRExpression hyperlinkAnchorExpression)
     Sets the expression that will generate the referred anchor.
public  voidsetHyperlinkPageExpression(JRExpression hyperlinkPageExpression)
     Sets the expression that will generate the referred page.
public  voidsetHyperlinkReferenceExpression(JRExpression hyperlinkReferenceExpression)
     Sets the expression that will generate the hyperlink reference URL or the referred document location.
public  voidsetHyperlinkTarget(byte hyperlinkTarget)
     Sets the hyperlink target.
public  voidsetHyperlinkTooltipExpression(JRExpression hyperlinkTooltipExpression)
     Sets the expression which will be used to generate the hyperlink tooltip.
public  voidsetHyperlinkType(byte hyperlinkType)
     Sets the link type as a built-in hyperlink type.
public  voidsetLinkType(String type)
     Sets the hyperlink type.


Constructor Detail
JRDesignHyperlink
public JRDesignHyperlink()(Code)




Method Detail
addHyperlinkParameter
public void addHyperlinkParameter(JRHyperlinkParameter parameter)(Code)
Adds a custom hyperlink parameter.
Parameters:
  parameter - the parameter to add



getHyperlinkParameters
public JRHyperlinkParameter[] getHyperlinkParameters()(Code)



getHyperlinkParametersList
public List getHyperlinkParametersList()(Code)
Returns the list of custom hyperlink parameters. the list of custom hyperlink parameters



removeHyperlinkParameter
public void removeHyperlinkParameter(JRHyperlinkParameter parameter)(Code)
Removes a custom hyperlink parameter.
Parameters:
  parameter - the parameter to remove



removeHyperlinkParameter
public void removeHyperlinkParameter(String parameterName)(Code)
Removes a custom hyperlink parameter.

If multiple parameters having the specified name exist, all of them will be removed


Parameters:
  parameterName - the parameter name



setHyperlinkAnchorExpression
public void setHyperlinkAnchorExpression(JRExpression hyperlinkAnchorExpression)(Code)
Sets the expression that will generate the referred anchor.

This expression is used when the hyperlink type is JRHyperlink.HYPERLINK_TYPE_LOCAL_ANCHOR JRHyperlink.HYPERLINK_TYPE_LOCAL_ANCHOR or JRHyperlink.HYPERLINK_TYPE_REMOTE_ANCHOR JRHyperlink.HYPERLINK_TYPE_REMOTE_ANCHOR . The type of the expression should be java.lang.String


Parameters:
  hyperlinkAnchorExpression - the anchor expression
See Also:   JRDesignHyperlink.getHyperlinkAnchorExpression()



setHyperlinkPageExpression
public void setHyperlinkPageExpression(JRExpression hyperlinkPageExpression)(Code)
Sets the expression that will generate the referred page.

This expression is used when the hyperlink type is JRHyperlink.HYPERLINK_TYPE_LOCAL_PAGE JRHyperlink.HYPERLINK_TYPE_LOCAL_PAGE or JRHyperlink.HYPERLINK_TYPE_REMOTE_PAGE JRHyperlink.HYPERLINK_TYPE_REMOTE_PAGE . The type of the expression should be java.lang.Integer


Parameters:
  hyperlinkPageExpression - the page expression
See Also:   JRDesignHyperlink.getHyperlinkPageExpression()



setHyperlinkReferenceExpression
public void setHyperlinkReferenceExpression(JRExpression hyperlinkReferenceExpression)(Code)
Sets the expression that will generate the hyperlink reference URL or the referred document location.

This expression is used when the hyperlink type is JRHyperlink.HYPERLINK_TYPE_REFERENCE JRHyperlink.HYPERLINK_TYPE_REFERENCE , JRHyperlink.HYPERLINK_TYPE_REMOTE_ANCHOR JRHyperlink.HYPERLINK_TYPE_REMOTE_ANCHOR or JRHyperlink.HYPERLINK_TYPE_REMOTE_PAGE JRHyperlink.HYPERLINK_TYPE_REMOTE_PAGE . The type of the expression should be java.lang.String


Parameters:
  hyperlinkReferenceExpression - the reference expression
See Also:   JRDesignHyperlink.getHyperlinkReferenceExpression()



setHyperlinkTarget
public void setHyperlinkTarget(byte hyperlinkTarget)(Code)
Sets the hyperlink target.
Parameters:
  hyperlinkTarget - the hyperlink target, one of
See Also:   JRDesignHyperlink.getHyperlinkTarget()



setHyperlinkTooltipExpression
public void setHyperlinkTooltipExpression(JRExpression hyperlinkTooltipExpression)(Code)
Sets the expression which will be used to generate the hyperlink tooltip. The type of the expression should be java.lang.String.
Parameters:
  hyperlinkTooltipExpression - the expression which will be used to generate the hyperlink tooltip
See Also:   JRDesignHyperlink.getHyperlinkTooltipExpression()



setHyperlinkType
public void setHyperlinkType(byte hyperlinkType)(Code)
Sets the link type as a built-in hyperlink type.
Parameters:
  hyperlinkType - the built-in hyperlink type
See Also:   JRDesignHyperlink.getLinkType()



setLinkType
public void setLinkType(String type)(Code)
Sets the hyperlink type.

The type can be one of the built-in types (Reference, LocalAnchor, LocalPage, RemoteAnchor, RemotePage), or can be an arbitrary type.


Parameters:
  type - the hyperlink type



Fields inherited from net.sf.jasperreports.engine.base.JRBaseHyperlink
protected JRExpression hyperlinkAnchorExpression(Code)(Java Doc)
protected JRExpression hyperlinkPageExpression(Code)(Java Doc)
protected JRHyperlinkParameter[] hyperlinkParameters(Code)(Java Doc)
protected JRExpression hyperlinkReferenceExpression(Code)(Java Doc)
protected byte hyperlinkTarget(Code)(Java Doc)
protected JRExpression hyperlinkTooltipExpression(Code)(Java Doc)
protected String linkType(Code)(Java Doc)

Methods inherited from net.sf.jasperreports.engine.base.JRBaseHyperlink
public static JRHyperlinkParameter[] copyHyperlinkParameters(JRHyperlink link, JRBaseObjectFactory factory)(Code)(Java Doc)
public JRExpression getHyperlinkAnchorExpression()(Code)(Java Doc)
public JRExpression getHyperlinkPageExpression()(Code)(Java Doc)
public JRHyperlinkParameter[] getHyperlinkParameters()(Code)(Java Doc)
public JRExpression getHyperlinkReferenceExpression()(Code)(Java Doc)
public byte getHyperlinkTarget()(Code)(Java Doc)
public JRExpression getHyperlinkTooltipExpression()(Code)(Java Doc)
public byte getHyperlinkType()(Code)(Java Doc)
public String getLinkType()(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.