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-scratchpad-5.2.3.jar?
What Is poi-scratchpad-5.2.3.jar?
✍: FYIcenter.com
poi-scratchpad-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-scratchpad-5.2.3.jar provides support for older versions of Microsoft document files like Word 97, Excel 97, PowerPoint 97, etc.
poi-scratchpad-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-scratchpad-5.2.3.jar Target JDK version: 9 Dependency: poi.jar File name: poi-scratchpad.jar, poi-scratchpad-5.2.3.jar File size: 1897121 bytes Release date: 09-09-2022 Download: Apache POI Website
Here are Java Source Code files for poi-scratchpad-5.2.3.jar:
⏎ org/apache/poi/hwpf/model/types/GrfhicAbstractType.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.hwpf.model.types; import java.util.Objects; import org.apache.poi.util.BitField; import org.apache.poi.util.Internal; /** * The grfhic structure is a set of HTML incompatibility flags that specify the HTML * incompatibilities of a list structure. The values specify possible incompatibilities between * an LVL or LVLF and HTML lists. The values do not define list properties. */ @Internal public abstract class GrfhicAbstractType { protected byte field_1_grfhic; /**/private static final BitField fHtmlChecked = new BitField(0x01); /**/private static final BitField fHtmlUnsupported = new BitField(0x02); /**/private static final BitField fHtmlListTextNotSharpDot = new BitField(0x04); /**/private static final BitField fHtmlNotPeriod = new BitField(0x08); /**/private static final BitField fHtmlFirstLineMismatch = new BitField(0x10); /**/private static final BitField fHtmlTabLeftIndentMismatch = new BitField(0x20); /**/private static final BitField fHtmlHangingIndentBeneathNumber = new BitField(0x40); /**/private static final BitField fHtmlBuiltInBullet = new BitField(0x80); protected GrfhicAbstractType() { } protected void fillFields( byte[] data, int offset ) { field_1_grfhic = data[ 0x0 + offset ]; } public void serialize( byte[] data, int offset ) { data[ 0x0 + offset ] = field_1_grfhic; } public byte[] serialize() { final byte[] result = new byte[ getSize() ]; serialize( result, 0 ); return result; } /** * Size of record */ public static int getSize() { return 1; } @Override public boolean equals( Object obj ) { if ( this == obj ) return true; if ( obj == null ) return false; if ( getClass() != obj.getClass() ) return false; GrfhicAbstractType other = (GrfhicAbstractType) obj; return field_1_grfhic == other.field_1_grfhic; } @Override public int hashCode() { return Objects.hash(field_1_grfhic); } public String toString() { return "[Grfhic]\n" + " .grfhic = " + " ( " + field_1_grfhic + " )\n" + " .fHtmlChecked = " + isFHtmlChecked() + '\n' + " .fHtmlUnsupported = " + isFHtmlUnsupported() + '\n' + " .fHtmlListTextNotSharpDot = " + isFHtmlListTextNotSharpDot() + '\n' + " .fHtmlNotPeriod = " + isFHtmlNotPeriod() + '\n' + " .fHtmlFirstLineMismatch = " + isFHtmlFirstLineMismatch() + '\n' + " .fHtmlTabLeftIndentMismatch = " + isFHtmlTabLeftIndentMismatch() + '\n' + " .fHtmlHangingIndentBeneathNumber = " + isFHtmlHangingIndentBeneathNumber() + '\n' + " .fHtmlBuiltInBullet = " + isFHtmlBuiltInBullet() + '\n' + "[/Grfhic]"; } /** * HTML compatibility flags. */ @Internal public byte getGrfhic() { return field_1_grfhic; } /** * HTML compatibility flags. */ @Internal public void setGrfhic( byte field_1_grfhic ) { this.field_1_grfhic = field_1_grfhic; } /** * Sets the fHtmlChecked field value. * Checked */ @Internal public void setFHtmlChecked( boolean value ) { field_1_grfhic = (byte)fHtmlChecked.setBoolean(field_1_grfhic, value); } /** * Checked * @return the fHtmlChecked field value. */ @Internal public boolean isFHtmlChecked() { return fHtmlChecked.isSet(field_1_grfhic); } /** * Sets the fHtmlUnsupported field value. * The numbering sequence or format is unsupported (includes tab & size) */ @Internal public void setFHtmlUnsupported( boolean value ) { field_1_grfhic = (byte)fHtmlUnsupported.setBoolean(field_1_grfhic, value); } /** * The numbering sequence or format is unsupported (includes tab & size) * @return the fHtmlUnsupported field value. */ @Internal public boolean isFHtmlUnsupported() { return fHtmlUnsupported.isSet(field_1_grfhic); } /** * Sets the fHtmlListTextNotSharpDot field value. * The list text is not "#." */ @Internal public void setFHtmlListTextNotSharpDot( boolean value ) { field_1_grfhic = (byte)fHtmlListTextNotSharpDot.setBoolean(field_1_grfhic, value); } /** * The list text is not "#." * @return the fHtmlListTextNotSharpDot field value. */ @Internal public boolean isFHtmlListTextNotSharpDot() { return fHtmlListTextNotSharpDot.isSet(field_1_grfhic); } /** * Sets the fHtmlNotPeriod field value. * Something other than a period is used */ @Internal public void setFHtmlNotPeriod( boolean value ) { field_1_grfhic = (byte)fHtmlNotPeriod.setBoolean(field_1_grfhic, value); } /** * Something other than a period is used * @return the fHtmlNotPeriod field value. */ @Internal public boolean isFHtmlNotPeriod() { return fHtmlNotPeriod.isSet(field_1_grfhic); } /** * Sets the fHtmlFirstLineMismatch field value. * First line indent mismatch */ @Internal public void setFHtmlFirstLineMismatch( boolean value ) { field_1_grfhic = (byte)fHtmlFirstLineMismatch.setBoolean(field_1_grfhic, value); } /** * First line indent mismatch * @return the fHtmlFirstLineMismatch field value. */ @Internal public boolean isFHtmlFirstLineMismatch() { return fHtmlFirstLineMismatch.isSet(field_1_grfhic); } /** * Sets the fHtmlTabLeftIndentMismatch field value. * The list tab and the dxaLeft don't match (need table?) */ @Internal public void setFHtmlTabLeftIndentMismatch( boolean value ) { field_1_grfhic = (byte)fHtmlTabLeftIndentMismatch.setBoolean(field_1_grfhic, value); } /** * The list tab and the dxaLeft don't match (need table?) * @return the fHtmlTabLeftIndentMismatch field value. */ @Internal public boolean isFHtmlTabLeftIndentMismatch() { return fHtmlTabLeftIndentMismatch.isSet(field_1_grfhic); } /** * Sets the fHtmlHangingIndentBeneathNumber field value. * The hanging indent falls beneath the number (need plain text) */ @Internal public void setFHtmlHangingIndentBeneathNumber( boolean value ) { field_1_grfhic = (byte)fHtmlHangingIndentBeneathNumber.setBoolean(field_1_grfhic, value); } /** * The hanging indent falls beneath the number (need plain text) * @return the fHtmlHangingIndentBeneathNumber field value. */ @Internal public boolean isFHtmlHangingIndentBeneathNumber() { return fHtmlHangingIndentBeneathNumber.isSet(field_1_grfhic); } /** * Sets the fHtmlBuiltInBullet field value. * A built-in HTML bullet */ @Internal public void setFHtmlBuiltInBullet( boolean value ) { field_1_grfhic = (byte)fHtmlBuiltInBullet.setBoolean(field_1_grfhic, value); } /** * A built-in HTML bullet * @return the fHtmlBuiltInBullet field value. */ @Internal public boolean isFHtmlBuiltInBullet() { return fHtmlBuiltInBullet.isSet(field_1_grfhic); } } // END OF CLASS
⏎ org/apache/poi/hwpf/model/types/GrfhicAbstractType.java
Or download all of them as a single archive file:
File name: poi-scratchpad-5.2.3-src.zip File size: 1238744 bytes Release date: 2022-09-09 Download
⇒ What Is poi-examples-5.2.3.jar?
⇐ What Is poi-excelant-5.2.3.jar?
2017-03-22, 34189👍, 0💬
Popular Posts:
kernel.jar is a component in iText Java library to provide low-level functionalities. iText Java lib...
JDK 1.1 source code directory contains Java source code for JDK 1.1 core classes: "C:\fyicenter\jdk-...
jlGui is a music player for the Java platform. It is based on Java Sound 1.0 (i.e. JDK 1.3+). It sup...
Java Cryptography Extension 1.2.2 JAR File Size and Download Location: File name: jce.jar, jce-1.2.2...
commons-fileupload-1.3.3 -sources.jaris the source JAR file for Apache Commons FileUpload 1.3., whic...