List of usage examples for org.apache.poi.hssf.usermodel HSSFHyperlink setLabel
@Override public void setLabel(String label)
From source file:org.sakaiproject.signup.tool.downloadEvents.EventWorksheet.java
License:Educational Community License
private HSSFHyperlink setAttachmentURLLinks(SignupAttachment attach) { HSSFHyperlink hsHyperlink = new HSSFHyperlink(HSSFHyperlink.LINK_URL); String link = this.sakaiFacade.getServerConfigurationService().getServerUrl() + attach.getLocation(); hsHyperlink.setAddress(link);//from w w w.j a va 2s .co m hsHyperlink.setLabel(attach.getFilename()); return hsHyperlink; }