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-ooxml-5.2.3.jar?
What Is poi-ooxml-5.2.3.jar?
✍: FYIcenter.com
poi-ooxml-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-ooxml-5.2.3.jar supports Apache POI components that read and write Microsoft's Open Office XML document format, which is used in recent versions of Microsoft Office tools like Word 2007, Excel 2007, PowerPoint 2007, etc.
poi-ooxml-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-ooxml-5.2.3.jar Target JDK version: 9 Dependency: poi.jar xmlbeans.jar ooxml-schemas.jar commons-collections.jar junit.jar File name: poi-ooxml.jar, poi-ooxml-5.2.3.jar File size: 2010497 bytes Release date: 09-09-2022 Download: Apache POI Website
Here are Java Source Code files for poi-ooxml-5.2.3.jar:
⏎ org/apache/poi/xddf/usermodel/XDDFShapeProperties.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.xddf.usermodel; import org.apache.poi.util.Beta; import org.apache.poi.util.Internal; import org.openxmlformats.schemas.drawingml.x2006.main.CTShapeProperties; @Beta public class XDDFShapeProperties { private CTShapeProperties props; public XDDFShapeProperties() { this(CTShapeProperties.Factory.newInstance()); } @Internal public XDDFShapeProperties(CTShapeProperties properties) { this.props = properties; } @Internal public CTShapeProperties getXmlObject() { return props; } public BlackWhiteMode getBlackWhiteMode() { if (props.isSetBwMode()) { return BlackWhiteMode.valueOf(props.getBwMode()); } else { return null; } } public void setBlackWhiteMode(BlackWhiteMode mode) { if (mode == null) { if (props.isSetBwMode()) { props.unsetBwMode(); } } else { props.setBwMode(mode.underlying); } } public XDDFFillProperties getFillProperties() { if (props.isSetGradFill()) { return new XDDFGradientFillProperties(props.getGradFill()); } else if (props.isSetGrpFill()) { return new XDDFGroupFillProperties(props.getGrpFill()); } else if (props.isSetNoFill()) { return new XDDFNoFillProperties(props.getNoFill()); } else if (props.isSetPattFill()) { return new XDDFPatternFillProperties(props.getPattFill()); } else if (props.isSetBlipFill()) { return new XDDFPictureFillProperties(props.getBlipFill()); } else if (props.isSetSolidFill()) { return new XDDFSolidFillProperties(props.getSolidFill()); } else { return null; } } public void setFillProperties(XDDFFillProperties properties) { if (props.isSetBlipFill()) { props.unsetBlipFill(); } if (props.isSetGradFill()) { props.unsetGradFill(); } if (props.isSetGrpFill()) { props.unsetGrpFill(); } if (props.isSetNoFill()) { props.unsetNoFill(); } if (props.isSetPattFill()) { props.unsetPattFill(); } if (props.isSetSolidFill()) { props.unsetSolidFill(); } if (properties == null) { return; } if (properties instanceof XDDFGradientFillProperties) { props.setGradFill(((XDDFGradientFillProperties) properties).getXmlObject()); } else if (properties instanceof XDDFGroupFillProperties) { props.setGrpFill(((XDDFGroupFillProperties) properties).getXmlObject()); } else if (properties instanceof XDDFNoFillProperties) { props.setNoFill(((XDDFNoFillProperties) properties).getXmlObject()); } else if (properties instanceof XDDFPatternFillProperties) { props.setPattFill(((XDDFPatternFillProperties) properties).getXmlObject()); } else if (properties instanceof XDDFPictureFillProperties) { props.setBlipFill(((XDDFPictureFillProperties) properties).getXmlObject()); } else if (properties instanceof XDDFSolidFillProperties) { props.setSolidFill(((XDDFSolidFillProperties) properties).getXmlObject()); } } public XDDFLineProperties getLineProperties() { if (props.isSetLn()) { return new XDDFLineProperties(props.getLn()); } else { return null; } } public void setLineProperties(XDDFLineProperties properties) { if (properties == null) { if (props.isSetLn()) { props.unsetLn(); } } else { props.setLn(properties.getXmlObject()); } } public XDDFCustomGeometry2D getCustomGeometry2D() { if (props.isSetCustGeom()) { return new XDDFCustomGeometry2D(props.getCustGeom()); } else { return null; } } public void setCustomGeometry2D(XDDFCustomGeometry2D geometry) { if (geometry == null) { if (props.isSetCustGeom()) { props.unsetCustGeom(); } } else { props.setCustGeom(geometry.getXmlObject()); } } public XDDFPresetGeometry2D getPresetGeometry2D() { if (props.isSetPrstGeom()) { return new XDDFPresetGeometry2D(props.getPrstGeom()); } else { return null; } } public void setPresetGeometry2D(XDDFPresetGeometry2D geometry) { if (geometry == null) { if (props.isSetPrstGeom()) { props.unsetPrstGeom(); } } else { props.setPrstGeom(geometry.getXmlObject()); } } public XDDFEffectContainer getEffectContainer() { if (props.isSetEffectDag()) { return new XDDFEffectContainer(props.getEffectDag()); } else { return null; } } public void setEffectContainer(XDDFEffectContainer container) { if (container == null) { if (props.isSetEffectDag()) { props.unsetEffectDag(); } } else { props.setEffectDag(container.getXmlObject()); } } public XDDFEffectList getEffectList() { if (props.isSetEffectLst()) { return new XDDFEffectList(props.getEffectLst()); } else { return null; } } public void setEffectList(XDDFEffectList list) { if (list == null) { if (props.isSetEffectLst()) { props.unsetEffectLst(); } } else { props.setEffectLst(list.getXmlObject()); } } public XDDFExtensionList getExtensionList() { if (props.isSetExtLst()) { return new XDDFExtensionList(props.getExtLst()); } else { return null; } } public void setExtensionList(XDDFExtensionList list) { if (list == null) { if (props.isSetExtLst()) { props.unsetExtLst(); } } else { props.setExtLst(list.getXmlObject()); } } public XDDFScene3D getScene3D() { if (props.isSetScene3D()) { return new XDDFScene3D(props.getScene3D()); } else { return null; } } public void setScene3D(XDDFScene3D scene) { if (scene == null) { if (props.isSetScene3D()) { props.unsetScene3D(); } } else { props.setScene3D(scene.getXmlObject()); } } public XDDFShape3D getShape3D() { if (props.isSetSp3D()) { return new XDDFShape3D(props.getSp3D()); } else { return null; } } public void setShape3D(XDDFShape3D shape) { if (shape == null) { if (props.isSetSp3D()) { props.unsetSp3D(); } } else { props.setSp3D(shape.getXmlObject()); } } public XDDFTransform2D getTransform2D() { if (props.isSetXfrm()) { return new XDDFTransform2D(props.getXfrm()); } else { return null; } } public void setTransform2D(XDDFTransform2D transform) { if (transform == null) { if (props.isSetXfrm()) { props.unsetXfrm(); } } else { props.setXfrm(transform.getXmlObject()); } } }
⏎ org/apache/poi/xddf/usermodel/XDDFShapeProperties.java
Or download all of them as a single archive file:
File name: poi-ooxml-5.2.3-src.zip File size: 1396572 bytes Release date: 2022-09-09 Download
⇒ What Is poi-excelant-5.2.3.jar?
2017-04-01, 38131👍, 0💬
Popular Posts:
Commons Pool provides an Object-pooling API, with three major aspects: 1. A generic object pool inte...
commons-lang-1.0.1.jar is the JAR file for Apache Commons Lang 1.0.1, which provides a host of helpe...
What Is javamail1_1_3.zip? javamail1_1_3.zip is the binary package of JavaMail API 1.1.3 in ZIP form...
How to download and install JDK (Java Development Kit) 8? If you want to write Java applications, yo...
The Jakarta-ORO Java classes are a set of text-processing Java classes that provide Perl5 compatible...