Examples of HyperlinkTargetEnum


Examples of net.sf.jasperreports.engine.type.HyperlinkTargetEnum

   * @param linkTarget the link target type
   * @return the hyperlink target
   */
  public static HyperlinkTargetEnum getHyperlinkTargetValue(String linkTarget)
  {
    HyperlinkTargetEnum target;
    if (linkTarget == null)
    {
      target = HyperlinkTargetEnum.SELF;
    }
    else
    {
      HyperlinkTargetEnum builtinTarget = HyperlinkTargetEnum.getByName(linkTarget);
      if (builtinTarget == null)
      {
        target = HyperlinkTargetEnum.CUSTOM;
      }
      else
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.