Tabnine Logo
CTNonVisualDrawingProps.getHlinkHover
Code IndexAdd Tabnine to your IDE (free)

How to use
getHlinkHover
method
in
org.openxmlformats.schemas.drawingml.x2006.main.CTNonVisualDrawingProps

Best Java code snippets using org.openxmlformats.schemas.drawingml.x2006.main.CTNonVisualDrawingProps.getHlinkHover (Showing top 3 results out of 315)

origin: apache/tika

private void extractHyperLinksFromShape(CTShape ctShape, XHTMLContentHandler xhtml) throws SAXException {
  if (ctShape == null)
    return;
  CTShapeNonVisual nvSpPR = ctShape.getNvSpPr();
  if (nvSpPR == null)
    return;
  CTNonVisualDrawingProps cNvPr = nvSpPR.getCNvPr();
  if (cNvPr == null)
    return;
  CTHyperlink ctHyperlink = cNvPr.getHlinkClick();
  if (ctHyperlink == null)
    return;
  String url = drawingHyperlinks.get(ctHyperlink.getId());
  if (url != null) {
    xhtml.startElement("a", "href", url);
    xhtml.characters(url);
    xhtml.endElement("a");
  }
  CTHyperlink ctHoverHyperlink = cNvPr.getHlinkHover();
  if (ctHoverHyperlink == null)
    return;
  url = drawingHyperlinks.get(ctHoverHyperlink.getId());
  if (url != null) {
    xhtml.startElement("a", "href", url);
    xhtml.characters(url);
    xhtml.endElement("a");
  }
}
origin: com.github.lafa.tikaNoExternal/tika-parsers

private void extractHyperLinksFromShape(CTShape ctShape, XHTMLContentHandler xhtml) throws SAXException {
  if (ctShape == null)
    return;
  CTShapeNonVisual nvSpPR = ctShape.getNvSpPr();
  if (nvSpPR == null)
    return;
  CTNonVisualDrawingProps cNvPr = nvSpPR.getCNvPr();
  if (cNvPr == null)
    return;
  CTHyperlink ctHyperlink = cNvPr.getHlinkClick();
  if (ctHyperlink == null)
    return;
  String url = drawingHyperlinks.get(ctHyperlink.getId());
  if (url != null) {
    xhtml.startElement("a", "href", url);
    xhtml.characters(url);
    xhtml.endElement("a");
  }
  CTHyperlink ctHoverHyperlink = cNvPr.getHlinkHover();
  if (ctHoverHyperlink == null)
    return;
  url = drawingHyperlinks.get(ctHoverHyperlink.getId());
  if (url != null) {
    xhtml.startElement("a", "href", url);
    xhtml.characters(url);
    xhtml.endElement("a");
  }
}
origin: org.apache.tika/tika-parsers

private void extractHyperLinksFromShape(CTShape ctShape, XHTMLContentHandler xhtml) throws SAXException {
  if (ctShape == null)
    return;
  CTShapeNonVisual nvSpPR = ctShape.getNvSpPr();
  if (nvSpPR == null)
    return;
  CTNonVisualDrawingProps cNvPr = nvSpPR.getCNvPr();
  if (cNvPr == null)
    return;
  CTHyperlink ctHyperlink = cNvPr.getHlinkClick();
  if (ctHyperlink == null)
    return;
  String url = drawingHyperlinks.get(ctHyperlink.getId());
  if (url != null) {
    xhtml.startElement("a", "href", url);
    xhtml.characters(url);
    xhtml.endElement("a");
  }
  CTHyperlink ctHoverHyperlink = cNvPr.getHlinkHover();
  if (ctHoverHyperlink == null)
    return;
  url = drawingHyperlinks.get(ctHoverHyperlink.getId());
  if (url != null) {
    xhtml.startElement("a", "href", url);
    xhtml.characters(url);
    xhtml.endElement("a");
  }
}
org.openxmlformats.schemas.drawingml.x2006.mainCTNonVisualDrawingPropsgetHlinkHover

Popular methods of CTNonVisualDrawingProps

  • setDescr
  • setId
  • setName
  • getHlinkClick
  • getDescr
  • getId
  • getName
  • addNewExtLst
  • addNewHlinkClick
  • getExtLst
  • isSetHlinkClick
  • isSetHlinkClick

Popular in Java

  • Finding current android device location
  • runOnUiThread (Activity)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getSharedPreferences (Context)
  • File (java.io)
    An "abstract" representation of a file system entity identified by a pathname. The pathname may be a
  • ConnectException (java.net)
    A ConnectException is thrown if a connection cannot be established to a remote host on a specific po
  • URL (java.net)
    A Uniform Resource Locator that identifies the location of an Internet resource as specified by RFC
  • URLEncoder (java.net)
    This class is used to encode a string using the format required by application/x-www-form-urlencoded
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • Annotation (javassist.bytecode.annotation)
    The annotation structure.An instance of this class is returned bygetAnnotations() in AnnotationsAttr
  • Github Copilot alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now