Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
What Is poi-5.2.3.jar?
What Is poi-5.2.3.jar?
✍: FYIcenter.com
poi-5.2.3.jar is one of the JAR files for Apache POI 5.2.3, which provides an API for Microsoft document files of Word, Excel, PowerPoint, and Visio.
poi-5.2.3.jar supports Apache POI components that read and write Microsoft's OLE 2 Compound document format, which is used in early versions of Microsoft Office tools like Word 97, Excel 97, PowerPoint 97, etc.
poi-5.2.3.jar is distributed as part of the poi-bin-5.2.3-20220909.zip download file.
JAR File Size and Download Location:
JAR name: poi-5.2.3.jar Target JDK version: 9 File name: poi.jar, poi-5.2.3.jar File size: 2964641 bytes Release date: 09-09-2022 Download: Apache POI Website
Here are Java Source Code files for poi-5.2.3.jar:
⏎ org/apache/poi/hssf/usermodel/HSSFComment.java
/* ==================================================================== Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==================================================================== */ package org.apache.poi.hssf.usermodel; import java.util.Objects; import org.apache.poi.ddf.DefaultEscherRecordFactory; import org.apache.poi.ddf.EscherBSERecord; import org.apache.poi.ddf.EscherContainerRecord; import org.apache.poi.ddf.EscherOptRecord; import org.apache.poi.ddf.EscherPropertyTypes; import org.apache.poi.ddf.EscherSimpleProperty; import org.apache.poi.hssf.record.CommonObjectDataSubRecord; import org.apache.poi.hssf.record.EndSubRecord; import org.apache.poi.hssf.record.NoteRecord; import org.apache.poi.hssf.record.NoteStructureSubRecord; import org.apache.poi.hssf.record.ObjRecord; import org.apache.poi.hssf.record.TextObjectRecord; import org.apache.poi.ss.usermodel.ClientAnchor; import org.apache.poi.ss.usermodel.Comment; import org.apache.poi.ss.util.CellAddress; /** * Represents a cell comment - a sticky note associated with a cell. */ public class HSSFComment extends HSSFTextbox implements Comment { private static final int FILL_TYPE_SOLID = 0; private static final int FILL_TYPE_PICTURE = 3; private static final int GROUP_SHAPE_PROPERTY_DEFAULT_VALUE = 655362; private static final int GROUP_SHAPE_HIDDEN_MASK = 0x1000002; private static final int GROUP_SHAPE_NOT_HIDDEN_MASK = 0xFEFFFFFD; /* * TODO - make HSSFComment more consistent when created vs read from file. * Currently HSSFComment has two main forms (corresponding to the two constructors). There * are certain operations that only work on comment objects in one of the forms (e.g. deleting * comments). * POI is also deficient in its management of RowRecord fields firstCol and lastCol. Those * fields are supposed to take comments into account, but POI does not do this yet (feb 2009). * It seems like HSSFRow should manage a collection of local HSSFComments */ private final NoteRecord _note; public HSSFComment(EscherContainerRecord spContainer, ObjRecord objRecord, TextObjectRecord textObjectRecord, NoteRecord note) { super(spContainer, objRecord, textObjectRecord); _note = note; } /** * Construct a new comment with the given parent and anchor. * * @param anchor defines position of this anchor in the sheet */ public HSSFComment(HSSFShape parent, HSSFAnchor anchor) { this(parent, anchor, createNoteRecord()); } private HSSFComment(HSSFShape parent, HSSFAnchor anchor, NoteRecord note) { super(parent, anchor); _note = note; //default color for comments setFillColor(0x08000050); //by default comments are hidden setVisible(false); setAuthor(""); CommonObjectDataSubRecord cod = (CommonObjectDataSubRecord) getObjRecord().getSubRecords().get(0); cod.setObjectType(CommonObjectDataSubRecord.OBJECT_TYPE_COMMENT); } protected HSSFComment(NoteRecord note, TextObjectRecord txo) { this(null, new HSSFClientAnchor(), note); } @Override void afterInsert(HSSFPatriarch patriarch) { super.afterInsert(patriarch); patriarch.getBoundAggregate().addTailRecord(getNoteRecord()); } @Override protected EscherContainerRecord createSpContainer() { EscherContainerRecord spContainer = super.createSpContainer(); EscherOptRecord opt = spContainer.getChildById(EscherOptRecord.RECORD_ID); assert(opt != null); opt.removeEscherProperty(EscherPropertyTypes.TEXT__TEXTLEFT); opt.removeEscherProperty(EscherPropertyTypes.TEXT__TEXTRIGHT); opt.removeEscherProperty(EscherPropertyTypes.TEXT__TEXTTOP); opt.removeEscherProperty(EscherPropertyTypes.TEXT__TEXTBOTTOM); opt.setEscherProperty(new EscherSimpleProperty(EscherPropertyTypes.GROUPSHAPE__FLAGS, false, false, GROUP_SHAPE_PROPERTY_DEFAULT_VALUE)); return spContainer; } @Override protected ObjRecord createObjRecord() { ObjRecord obj = new ObjRecord(); CommonObjectDataSubRecord c = new CommonObjectDataSubRecord(); c.setObjectType(OBJECT_TYPE_COMMENT); c.setLocked(true); c.setPrintable(true); c.setAutofill(false); c.setAutoline(true); NoteStructureSubRecord u = new NoteStructureSubRecord(); EndSubRecord e = new EndSubRecord(); obj.addSubRecord(c); obj.addSubRecord(u); obj.addSubRecord(e); return obj; } private static NoteRecord createNoteRecord() { NoteRecord note = new NoteRecord(); note.setFlags(NoteRecord.NOTE_HIDDEN); note.setAuthor(""); return note; } @Override void setShapeId(int shapeId) { if(shapeId > 65535) { throw new IllegalArgumentException("Cannot add more than " + 65535 + " shapes"); } super.setShapeId(shapeId); CommonObjectDataSubRecord cod = (CommonObjectDataSubRecord) getObjRecord().getSubRecords().get(0); cod.setObjectId(shapeId); _note.setShapeId(shapeId); } /** * Sets whether this comment is visible. * * @param visible {@code true} if the comment is visible, {@code false} otherwise */ @Override public void setVisible(boolean visible) { _note.setFlags(visible ? NoteRecord.NOTE_VISIBLE : NoteRecord.NOTE_HIDDEN); setHidden(!visible); } /** * Returns whether this comment is visible. * * @return {@code true} if the comment is visible, {@code false} otherwise */ @Override public boolean isVisible() { return _note.getFlags() == NoteRecord.NOTE_VISIBLE; } @Override public CellAddress getAddress() { return new CellAddress(getRow(), getColumn()); } @Override public void setAddress(CellAddress address) { setRow(address.getRow()); setColumn(address.getColumn()); } @Override public void setAddress(int row, int col) { setRow(row); setColumn(col); } /** * Return the row of the cell that contains the comment * * @return the 0-based row of the cell that contains the comment */ @Override public int getRow() { return _note.getRow(); } /** * Set the row of the cell that contains the comment * * @param row the 0-based row of the cell that contains the comment */ @Override public void setRow(int row) { _note.setRow(row); } /** * Return the column of the cell that contains the comment * * @return the 0-based column of the cell that contains the comment */ @Override public int getColumn() { return _note.getColumn(); } /** * Set the column of the cell that contains the comment * * @param col the 0-based column of the cell that contains the comment */ @Override public void setColumn(int col) { _note.setColumn(col); } /** * Name of the original comment author * * @return the name of the original author of the comment */ @Override public String getAuthor() { return _note.getAuthor(); } /** * Name of the original comment author * * @param author the name of the original author of the comment */ @Override public void setAuthor(String author) { if (_note != null) _note.setAuthor(author); } /** * Returns the underlying Note record */ protected NoteRecord getNoteRecord() { return _note; } /** * Do we know which cell this comment belongs to? */ public boolean hasPosition() { return _note != null && getColumn() >= 0 && getRow() >= 0; } @Override public ClientAnchor getClientAnchor() { HSSFAnchor ha = super.getAnchor(); if (ha instanceof ClientAnchor) { return (ClientAnchor) ha; } throw new IllegalStateException("Anchor can not be changed in " + ClientAnchor.class.getSimpleName()); } @Override public void setShapeType(int shapeType) { throw new IllegalStateException("Shape type can not be changed in "+this.getClass().getSimpleName()); } @Override public void afterRemove(HSSFPatriarch patriarch){ super.afterRemove(patriarch); patriarch.getBoundAggregate().removeTailRecord(getNoteRecord()); } @Override protected HSSFShape cloneShape() { TextObjectRecord txo = (TextObjectRecord) getTextObjectRecord().cloneViaReserialise(); EscherContainerRecord spContainer = new EscherContainerRecord(); byte [] inSp = getEscherContainer().serialize(); spContainer.fillFields(inSp, 0, new DefaultEscherRecordFactory()); ObjRecord obj = (ObjRecord) getObjRecord().cloneViaReserialise(); NoteRecord note = (NoteRecord) getNoteRecord().cloneViaReserialise(); return new HSSFComment(spContainer, obj, txo, note); } public void setBackgroundImage(int pictureIndex){ setPropertyValue(new EscherSimpleProperty( EscherPropertyTypes.FILL__PATTERNTEXTURE, false, true, pictureIndex)); setPropertyValue(new EscherSimpleProperty( EscherPropertyTypes.FILL__FILLTYPE, false, false, FILL_TYPE_PICTURE)); EscherBSERecord bse = getPatriarch().getSheet().getWorkbook().getWorkbook().getBSERecord(pictureIndex); bse.setRef(bse.getRef() + 1); } public void resetBackgroundImage(){ EscherSimpleProperty property = getOptRecord().lookup(EscherPropertyTypes.FILL__PATTERNTEXTURE); if (null != property){ EscherBSERecord bse = getPatriarch().getSheet().getWorkbook().getWorkbook().getBSERecord(property.getPropertyValue()); bse.setRef(bse.getRef() - 1); getOptRecord().removeEscherProperty(EscherPropertyTypes.FILL__PATTERNTEXTURE); } setPropertyValue(new EscherSimpleProperty( EscherPropertyTypes.FILL__FILLTYPE, false, false, FILL_TYPE_SOLID)); } public int getBackgroundImageId(){ EscherSimpleProperty property = getOptRecord().lookup(EscherPropertyTypes.FILL__PATTERNTEXTURE); return property == null ? 0 : property.getPropertyValue(); } private void setHidden(boolean value){ EscherSimpleProperty property = getOptRecord().lookup(EscherPropertyTypes.GROUPSHAPE__FLAGS); // see http://msdn.microsoft.com/en-us/library/dd949807(v=office.12).aspx if (value){ setPropertyValue(new EscherSimpleProperty(EscherPropertyTypes.GROUPSHAPE__FLAGS, false, false, property.getPropertyValue() | GROUP_SHAPE_HIDDEN_MASK)); } else { setPropertyValue(new EscherSimpleProperty(EscherPropertyTypes.GROUPSHAPE__FLAGS, false, false, property.getPropertyValue() & GROUP_SHAPE_NOT_HIDDEN_MASK)); } } @Override public boolean equals(Object obj) { if (!(obj instanceof HSSFComment)) { return false; } HSSFComment other = (HSSFComment) obj; return getNoteRecord().equals(other.getNoteRecord()); } @Override public int hashCode() { return Objects.hash(getRow(),getColumn()); } }
⏎ org/apache/poi/hssf/usermodel/HSSFComment.java
Or download all of them as a single archive file:
File name: poi-5.2.3-src.zip File size: 2479830 bytes Release date: 2022-09-09 Download
⇒ What Is poi-ooxml-5.2.3.jar?
⇐ What Is poi-bin-5.2.3-20220909.zip?
2017-04-04, 75352👍, 0💬
Popular Posts:
What Is activation.jar? I heard it's related to JAF (JavaBeans Activation Framework) 1.1? The if you...
Where to find answers to frequently asked questions on Downloading and Using JDK (Java Development K...
JDK 11 jdk.charsets.jmod is the JMOD file for JDK 11 Charsets module. JDK 11 Charsets module compile...
JDK 11 jdk.crypto.ec.jmod is the JMOD file for JDK 11 Crypto EC module. JDK 11 Crypto EC module comp...
How to run "jarsigner" command from JDK tools.jar file? "jarsigner" command allows you to digitally ...