├── .gitignore ├── README.md ├── app ├── .gitignore ├── app.iml ├── build.gradle ├── libs │ ├── commons-codec-1.5.jar │ ├── commons-logging-1.1.jar │ ├── dom4j-1.6.1.jar │ ├── jsr173_1.0_api.jar │ ├── log4j-1.2.13.jar │ ├── org-apache-poi-xslf-mofel-geom-PresetGeometries.jar │ ├── schemaorg_apache_xmlbeans_new.jar │ ├── sjsxp.jar │ └── xmlbeans-2.3.0.jar ├── proguard-rules.txt └── src │ └── main │ ├── AndroidManifest.xml │ ├── assets │ └── presetShapeDefinitions.xml │ ├── java │ ├── and │ │ └── awt │ │ │ ├── BasicStroke.java │ │ │ ├── BufferedImage.java │ │ │ ├── Color.java │ │ │ ├── Dimension.java │ │ │ ├── Font.java │ │ │ ├── Graphics.java │ │ │ ├── Image.java │ │ │ ├── ImageIO.java │ │ │ ├── Paint.java │ │ │ ├── Point.java │ │ │ ├── Polygon.java │ │ │ ├── Rectangle.java │ │ │ ├── Shape.java │ │ │ ├── Stroke.java │ │ │ ├── TexturePaint.java │ │ │ ├── Transparency.java │ │ │ ├── color │ │ │ └── ColorSpace.java │ │ │ └── geom │ │ │ ├── AffineTransform.java │ │ │ ├── Arc2D.java │ │ │ ├── ArcIterator.java │ │ │ ├── Area.java │ │ │ ├── CubicCurve2D.java │ │ │ ├── CubicIterator.java │ │ │ ├── Dimension2D.java │ │ │ ├── Ellipse2D.java │ │ │ ├── EllipseIterator.java │ │ │ ├── FlatteningPathIterator.java │ │ │ ├── GeneralPath.java │ │ │ ├── IllegalPathStateException.java │ │ │ ├── Line2D.java │ │ │ ├── LineIterator.java │ │ │ ├── NoninvertibleTransformException.java │ │ │ ├── Path2D.java │ │ │ ├── PathIterator.java │ │ │ ├── Point2D.java │ │ │ ├── QuadCurve2D.java │ │ │ ├── QuadIterator.java │ │ │ ├── RectIterator.java │ │ │ ├── Rectangle2D.java │ │ │ ├── RectangularShape.java │ │ │ ├── RoundRectIterator.java │ │ │ └── RoundRectangle2D.java │ ├── com │ │ ├── qhm123 │ │ │ └── slide │ │ │ │ ├── GestureDetector.java │ │ │ │ ├── ImageViewTouch.java │ │ │ │ ├── PagerAdapter.java │ │ │ │ ├── RotateBitmap.java │ │ │ │ ├── ScaleGestureDetector.java │ │ │ │ ├── Utils.java │ │ │ │ └── ViewPager.java │ │ └── singuloid │ │ │ └── officereader │ │ │ └── OpenActivity.java │ ├── net │ │ └── pbdavey │ │ │ ├── awt │ │ │ ├── Font.java │ │ │ ├── FontMetrics.java │ │ │ ├── Graphics2D.java │ │ │ └── GraphicsEnvironment.java │ │ │ └── util │ │ │ └── Arrays.java │ ├── org │ │ ├── apache │ │ │ └── poi │ │ │ │ ├── POIXMLDocument.java │ │ │ │ ├── POIXMLDocumentPart.java │ │ │ │ ├── POIXMLException.java │ │ │ │ ├── POIXMLFactory.java │ │ │ │ ├── POIXMLRelation.java │ │ │ │ ├── openxml4j │ │ │ │ ├── exceptions │ │ │ │ │ ├── InvalidFormatException.java │ │ │ │ │ ├── InvalidOperationException.java │ │ │ │ │ ├── OpenXML4JException.java │ │ │ │ │ ├── OpenXML4JRuntimeException.java │ │ │ │ │ └── PartAlreadyExistsException.java │ │ │ │ ├── opc │ │ │ │ │ ├── CertificateEmbeddingOption.java │ │ │ │ │ ├── CompressionOption.java │ │ │ │ │ ├── Configuration.java │ │ │ │ │ ├── ContentTypes.java │ │ │ │ │ ├── EncryptionOption.java │ │ │ │ │ ├── OPCPackage.java │ │ │ │ │ ├── Package.java │ │ │ │ │ ├── PackageAccess.java │ │ │ │ │ ├── PackageNamespaces.java │ │ │ │ │ ├── PackagePart.java │ │ │ │ │ ├── PackagePartCollection.java │ │ │ │ │ ├── PackagePartName.java │ │ │ │ │ ├── PackageProperties.java │ │ │ │ │ ├── PackageRelationship.java │ │ │ │ │ ├── PackageRelationshipCollection.java │ │ │ │ │ ├── PackageRelationshipTypes.java │ │ │ │ │ ├── PackagingURIHelper.java │ │ │ │ │ ├── RelationshipSource.java │ │ │ │ │ ├── StreamHelper.java │ │ │ │ │ ├── TargetMode.java │ │ │ │ │ ├── ZipPackage.java │ │ │ │ │ ├── ZipPackagePart.java │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── ContentType.java │ │ │ │ │ │ ├── ContentTypeManager.java │ │ │ │ │ │ ├── FileHelper.java │ │ │ │ │ │ ├── MemoryPackagePart.java │ │ │ │ │ │ ├── MemoryPackagePartOutputStream.java │ │ │ │ │ │ ├── PackagePropertiesPart.java │ │ │ │ │ │ ├── PartMarshaller.java │ │ │ │ │ │ ├── PartUnmarshaller.java │ │ │ │ │ │ ├── ZipContentTypeManager.java │ │ │ │ │ │ ├── ZipHelper.java │ │ │ │ │ │ ├── marshallers │ │ │ │ │ │ │ ├── DefaultMarshaller.java │ │ │ │ │ │ │ ├── PackagePropertiesMarshaller.java │ │ │ │ │ │ │ ├── ZipPackagePropertiesMarshaller.java │ │ │ │ │ │ │ └── ZipPartMarshaller.java │ │ │ │ │ │ ├── signature │ │ │ │ │ │ │ ├── DigitalCertificatePart.java │ │ │ │ │ │ │ └── DigitalSignatureOriginPart.java │ │ │ │ │ │ └── unmarshallers │ │ │ │ │ │ │ ├── PackagePropertiesUnmarshaller.java │ │ │ │ │ │ │ └── UnmarshallContext.java │ │ │ │ │ └── signature │ │ │ │ │ │ ├── PackageDigitalSignature.java │ │ │ │ │ │ └── PackageDigitalSignatureManager.java │ │ │ │ └── util │ │ │ │ │ ├── Nullable.java │ │ │ │ │ ├── ZipEntrySource.java │ │ │ │ │ ├── ZipFileZipEntrySource.java │ │ │ │ │ └── ZipInputStreamZipEntrySource.java │ │ │ │ ├── poifs │ │ │ │ └── common │ │ │ │ │ └── POIFSConstants.java │ │ │ │ ├── util │ │ │ │ ├── ArrayUtil.java │ │ │ │ ├── Beta.java │ │ │ │ ├── BinaryTree.java │ │ │ │ ├── BitField.java │ │ │ │ ├── BitFieldFactory.java │ │ │ │ ├── BlockingInputStream.java │ │ │ │ ├── ByteField.java │ │ │ │ ├── CommonsLogger.java │ │ │ │ ├── DelayableLittleEndianOutput.java │ │ │ │ ├── FixedField.java │ │ │ │ ├── HexDump.java │ │ │ │ ├── HexRead.java │ │ │ │ ├── IOUtils.java │ │ │ │ ├── IdentifierManager.java │ │ │ │ ├── IntList.java │ │ │ │ ├── IntMapper.java │ │ │ │ ├── IntegerField.java │ │ │ │ ├── Internal.java │ │ │ │ ├── LZWDecompresser.java │ │ │ │ ├── LittleEndian.java │ │ │ │ ├── LittleEndianByteArrayInputStream.java │ │ │ │ ├── LittleEndianByteArrayOutputStream.java │ │ │ │ ├── LittleEndianConsts.java │ │ │ │ ├── LittleEndianInput.java │ │ │ │ ├── LittleEndianInputStream.java │ │ │ │ ├── LittleEndianOutput.java │ │ │ │ ├── LittleEndianOutputStream.java │ │ │ │ ├── LongField.java │ │ │ │ ├── NullLogger.java │ │ │ │ ├── POILogFactory.java │ │ │ │ ├── POILogger.java │ │ │ │ ├── PackageHelper.java │ │ │ │ ├── RecordFormatException.java │ │ │ │ ├── ShortField.java │ │ │ │ ├── ShortList.java │ │ │ │ ├── StringUtil.java │ │ │ │ ├── SystemOutLogger.java │ │ │ │ ├── TempFile.java │ │ │ │ ├── Units.java │ │ │ │ └── package.html │ │ │ │ └── xslf │ │ │ │ ├── XSLFSlideShow.java │ │ │ │ ├── model │ │ │ │ ├── CharacterPropertyFetcher.java │ │ │ │ ├── ParagraphPropertyFetcher.java │ │ │ │ ├── PropertyFetcher.java │ │ │ │ ├── TextBodyPropertyFetcher.java │ │ │ │ └── geom │ │ │ │ │ ├── AbsExpression.java │ │ │ │ │ ├── AddDivideExpression.java │ │ │ │ │ ├── AddSubtractExpression.java │ │ │ │ │ ├── AdjustValue.java │ │ │ │ │ ├── ArcTanExpression.java │ │ │ │ │ ├── ArcToCommand.java │ │ │ │ │ ├── ClosePathCommand.java │ │ │ │ │ ├── Context.java │ │ │ │ │ ├── CosExpression.java │ │ │ │ │ ├── CosineArcTanExpression.java │ │ │ │ │ ├── CurveToCommand.java │ │ │ │ │ ├── CustomGeometry.java │ │ │ │ │ ├── Expression.java │ │ │ │ │ ├── ExpressionParser.java │ │ │ │ │ ├── Formula.java │ │ │ │ │ ├── Guide.java │ │ │ │ │ ├── IAdjustableShape.java │ │ │ │ │ ├── IfElseExpression.java │ │ │ │ │ ├── LineToCommand.java │ │ │ │ │ ├── LiteralValueExpression.java │ │ │ │ │ ├── MaxExpression.java │ │ │ │ │ ├── MinExpression.java │ │ │ │ │ ├── ModExpression.java │ │ │ │ │ ├── MoveToCommand.java │ │ │ │ │ ├── MultiplyDivideExpression.java │ │ │ │ │ ├── Outline.java │ │ │ │ │ ├── Path.java │ │ │ │ │ ├── PathCommand.java │ │ │ │ │ ├── PinExpression.java │ │ │ │ │ ├── PresetGeometries.txt │ │ │ │ │ ├── QuadToCommand.java │ │ │ │ │ ├── SinArcTanExpression.java │ │ │ │ │ ├── SinExpression.java │ │ │ │ │ ├── SqrtExpression.java │ │ │ │ │ ├── TanExpression.java │ │ │ │ │ └── presetShapeDefinitions.xml │ │ │ │ └── usermodel │ │ │ │ ├── DrawingParagraph.java │ │ │ │ ├── DrawingTextBody.java │ │ │ │ ├── DrawingTextPlaceholder.java │ │ │ │ ├── LineCap.java │ │ │ │ ├── LineDash.java │ │ │ │ ├── LineDecoration.java │ │ │ │ ├── LineEndLength.java │ │ │ │ ├── LineEndWidth.java │ │ │ │ ├── ListAutoNumber.java │ │ │ │ ├── Placeholder.java │ │ │ │ ├── RenderableShape.java │ │ │ │ ├── SlideLayout.java │ │ │ │ ├── TextAlign.java │ │ │ │ ├── TextAutofit.java │ │ │ │ ├── TextCap.java │ │ │ │ ├── TextDirection.java │ │ │ │ ├── TextFragment.java │ │ │ │ ├── VerticalAlignment.java │ │ │ │ ├── XMLSlideShow.java │ │ │ │ ├── XSLFAutoShape.java │ │ │ │ ├── XSLFBackground.java │ │ │ │ ├── XSLFColor.java │ │ │ │ ├── XSLFCommentAuthors.java │ │ │ │ ├── XSLFComments.java │ │ │ │ ├── XSLFCommonSlideData.java │ │ │ │ ├── XSLFConnectorShape.java │ │ │ │ ├── XSLFDrawing.java │ │ │ │ ├── XSLFFactory.java │ │ │ │ ├── XSLFFontManager.java │ │ │ │ ├── XSLFFreeformShape.java │ │ │ │ ├── XSLFGraphicFrame.java │ │ │ │ ├── XSLFGroupShape.java │ │ │ │ ├── XSLFImageRenderer.java │ │ │ │ ├── XSLFLineBreak.java │ │ │ │ ├── XSLFNotes.java │ │ │ │ ├── XSLFNotesMaster.java │ │ │ │ ├── XSLFPictureData.java │ │ │ │ ├── XSLFPictureShape.java │ │ │ │ ├── XSLFRelation.java │ │ │ │ ├── XSLFRenderingHint.java │ │ │ │ ├── XSLFShadow.java │ │ │ │ ├── XSLFShape.java │ │ │ │ ├── XSLFShapeContainer.java │ │ │ │ ├── XSLFShapeType.java │ │ │ │ ├── XSLFSheet.java │ │ │ │ ├── XSLFSimpleShape.java │ │ │ │ ├── XSLFSlide.java │ │ │ │ ├── XSLFSlideLayout.java │ │ │ │ ├── XSLFSlideMaster.java │ │ │ │ ├── XSLFTable.java │ │ │ │ ├── XSLFTableCell.java │ │ │ │ ├── XSLFTableRow.java │ │ │ │ ├── XSLFTableStyle.java │ │ │ │ ├── XSLFTableStyles.java │ │ │ │ ├── XSLFTextBox.java │ │ │ │ ├── XSLFTextParagraph.java │ │ │ │ ├── XSLFTextRun.java │ │ │ │ ├── XSLFTextShape.java │ │ │ │ ├── XSLFTheme.java │ │ │ │ └── presetShapeDefinitions.xml │ │ └── openxmlformats │ │ │ └── schemas │ │ │ ├── drawingml │ │ │ └── x2006 │ │ │ │ └── main │ │ │ │ ├── BlipDocument.java │ │ │ │ ├── CTAdjPoint2D.java │ │ │ │ ├── CTAdjustHandleList.java │ │ │ │ ├── CTAlphaBiLevelEffect.java │ │ │ │ ├── CTAlphaCeilingEffect.java │ │ │ │ ├── CTAlphaFloorEffect.java │ │ │ │ ├── CTAlphaInverseEffect.java │ │ │ │ ├── CTAlphaModulateEffect.java │ │ │ │ ├── CTAlphaModulateFixedEffect.java │ │ │ │ ├── CTAlphaOutsetEffect.java │ │ │ │ ├── CTAlphaReplaceEffect.java │ │ │ │ ├── CTAngle.java │ │ │ │ ├── CTAnimationChartBuildProperties.java │ │ │ │ ├── CTAnimationChartElement.java │ │ │ │ ├── CTAnimationDgmBuildProperties.java │ │ │ │ ├── CTAnimationDgmElement.java │ │ │ │ ├── CTAnimationElementChoice.java │ │ │ │ ├── CTAnimationGraphicalObjectBuildProperties.java │ │ │ │ ├── CTAudioCD.java │ │ │ │ ├── CTAudioCDTime.java │ │ │ │ ├── CTAudioFile.java │ │ │ │ ├── CTBackdrop.java │ │ │ │ ├── CTBackgroundFillStyleList.java │ │ │ │ ├── CTBackgroundFormatting.java │ │ │ │ ├── CTBaseStyles.java │ │ │ │ ├── CTBaseStylesOverride.java │ │ │ │ ├── CTBevel.java │ │ │ │ ├── CTBiLevelEffect.java │ │ │ │ ├── CTBlendEffect.java │ │ │ │ ├── CTBlip.java │ │ │ │ ├── CTBlipFillProperties.java │ │ │ │ ├── CTBlurEffect.java │ │ │ │ ├── CTCamera.java │ │ │ │ ├── CTCell3D.java │ │ │ │ ├── CTClipboardStyleSheet.java │ │ │ │ ├── CTColor.java │ │ │ │ ├── CTColorChangeEffect.java │ │ │ │ ├── CTColorMRU.java │ │ │ │ ├── CTColorMapping.java │ │ │ │ ├── CTColorMappingOverride.java │ │ │ │ ├── CTColorReplaceEffect.java │ │ │ │ ├── CTColorScheme.java │ │ │ │ ├── CTColorSchemeAndMapping.java │ │ │ │ ├── CTColorSchemeList.java │ │ │ │ ├── CTComplementTransform.java │ │ │ │ ├── CTConnection.java │ │ │ │ ├── CTConnectionSite.java │ │ │ │ ├── CTConnectionSiteList.java │ │ │ │ ├── CTConnectorLocking.java │ │ │ │ ├── CTCustomColor.java │ │ │ │ ├── CTCustomColorList.java │ │ │ │ ├── CTCustomGeometry2D.java │ │ │ │ ├── CTDashStop.java │ │ │ │ ├── CTDashStopList.java │ │ │ │ ├── CTDefaultShapeDefinition.java │ │ │ │ ├── CTDuotoneEffect.java │ │ │ │ ├── CTEffectContainer.java │ │ │ │ ├── CTEffectList.java │ │ │ │ ├── CTEffectProperties.java │ │ │ │ ├── CTEffectReference.java │ │ │ │ ├── CTEffectStyleItem.java │ │ │ │ ├── CTEffectStyleList.java │ │ │ │ ├── CTEmbeddedWAVAudioFile.java │ │ │ │ ├── CTEmptyElement.java │ │ │ │ ├── CTFillEffect.java │ │ │ │ ├── CTFillOverlayEffect.java │ │ │ │ ├── CTFillProperties.java │ │ │ │ ├── CTFillStyleList.java │ │ │ │ ├── CTFixedPercentage.java │ │ │ │ ├── CTFlatText.java │ │ │ │ ├── CTFontCollection.java │ │ │ │ ├── CTFontReference.java │ │ │ │ ├── CTFontScheme.java │ │ │ │ ├── CTGammaTransform.java │ │ │ │ ├── CTGeomGuide.java │ │ │ │ ├── CTGeomGuideList.java │ │ │ │ ├── CTGeomRect.java │ │ │ │ ├── CTGlowEffect.java │ │ │ │ ├── CTGradientFillProperties.java │ │ │ │ ├── CTGradientStop.java │ │ │ │ ├── CTGradientStopList.java │ │ │ │ ├── CTGraphicalObject.java │ │ │ │ ├── CTGraphicalObjectData.java │ │ │ │ ├── CTGraphicalObjectFrameLocking.java │ │ │ │ ├── CTGrayscaleEffect.java │ │ │ │ ├── CTGrayscaleTransform.java │ │ │ │ ├── CTGroupFillProperties.java │ │ │ │ ├── CTGroupLocking.java │ │ │ │ ├── CTGroupShapeProperties.java │ │ │ │ ├── CTGroupTransform2D.java │ │ │ │ ├── CTGvmlConnector.java │ │ │ │ ├── CTGvmlConnectorNonVisual.java │ │ │ │ ├── CTGvmlGraphicFrameNonVisual.java │ │ │ │ ├── CTGvmlGraphicalObjectFrame.java │ │ │ │ ├── CTGvmlGroupShape.java │ │ │ │ ├── CTGvmlGroupShapeNonVisual.java │ │ │ │ ├── CTGvmlPicture.java │ │ │ │ ├── CTGvmlPictureNonVisual.java │ │ │ │ ├── CTGvmlShape.java │ │ │ │ ├── CTGvmlShapeNonVisual.java │ │ │ │ ├── CTGvmlTextShape.java │ │ │ │ ├── CTGvmlUseShapeRectangle.java │ │ │ │ ├── CTHSLEffect.java │ │ │ │ ├── CTHslColor.java │ │ │ │ ├── CTHyperlink.java │ │ │ │ ├── CTInnerShadowEffect.java │ │ │ │ ├── CTInverseGammaTransform.java │ │ │ │ ├── CTInverseTransform.java │ │ │ │ ├── CTLightRig.java │ │ │ │ ├── CTLineEndProperties.java │ │ │ │ ├── CTLineJoinBevel.java │ │ │ │ ├── CTLineJoinMiterProperties.java │ │ │ │ ├── CTLineJoinRound.java │ │ │ │ ├── CTLineProperties.java │ │ │ │ ├── CTLineStyleList.java │ │ │ │ ├── CTLinearShadeProperties.java │ │ │ │ ├── CTLuminanceEffect.java │ │ │ │ ├── CTNoFillProperties.java │ │ │ │ ├── CTNonVisualConnectorProperties.java │ │ │ │ ├── CTNonVisualDrawingProps.java │ │ │ │ ├── CTNonVisualDrawingShapeProps.java │ │ │ │ ├── CTNonVisualGraphicFrameProperties.java │ │ │ │ ├── CTNonVisualGroupDrawingShapeProps.java │ │ │ │ ├── CTNonVisualPictureProperties.java │ │ │ │ ├── CTObjectStyleDefaults.java │ │ │ │ ├── CTOfficeArtExtension.java │ │ │ │ ├── CTOfficeArtExtensionList.java │ │ │ │ ├── CTOfficeStyleSheet.java │ │ │ │ ├── CTOuterShadowEffect.java │ │ │ │ ├── CTPath2D.java │ │ │ │ ├── CTPath2DArcTo.java │ │ │ │ ├── CTPath2DClose.java │ │ │ │ ├── CTPath2DCubicBezierTo.java │ │ │ │ ├── CTPath2DLineTo.java │ │ │ │ ├── CTPath2DList.java │ │ │ │ ├── CTPath2DMoveTo.java │ │ │ │ ├── CTPath2DQuadBezierTo.java │ │ │ │ ├── CTPathShadeProperties.java │ │ │ │ ├── CTPatternFillProperties.java │ │ │ │ ├── CTPercentage.java │ │ │ │ ├── CTPictureLocking.java │ │ │ │ ├── CTPoint2D.java │ │ │ │ ├── CTPoint3D.java │ │ │ │ ├── CTPolarAdjustHandle.java │ │ │ │ ├── CTPositiveFixedAngle.java │ │ │ │ ├── CTPositiveFixedPercentage.java │ │ │ │ ├── CTPositivePercentage.java │ │ │ │ ├── CTPositiveSize2D.java │ │ │ │ ├── CTPresetColor.java │ │ │ │ ├── CTPresetGeometry2D.java │ │ │ │ ├── CTPresetLineDashProperties.java │ │ │ │ ├── CTPresetShadowEffect.java │ │ │ │ ├── CTPresetTextShape.java │ │ │ │ ├── CTQuickTimeFile.java │ │ │ │ ├── CTRatio.java │ │ │ │ ├── CTReflectionEffect.java │ │ │ │ ├── CTRegularTextRun.java │ │ │ │ ├── CTRelativeOffsetEffect.java │ │ │ │ ├── CTRelativeRect.java │ │ │ │ ├── CTSRgbColor.java │ │ │ │ ├── CTScRgbColor.java │ │ │ │ ├── CTScale2D.java │ │ │ │ ├── CTScene3D.java │ │ │ │ ├── CTSchemeColor.java │ │ │ │ ├── CTShape3D.java │ │ │ │ ├── CTShapeLocking.java │ │ │ │ ├── CTShapeProperties.java │ │ │ │ ├── CTShapeStyle.java │ │ │ │ ├── CTSoftEdgesEffect.java │ │ │ │ ├── CTSolidColorFillProperties.java │ │ │ │ ├── CTSphereCoords.java │ │ │ │ ├── CTStretchInfoProperties.java │ │ │ │ ├── CTStyleMatrix.java │ │ │ │ ├── CTStyleMatrixReference.java │ │ │ │ ├── CTSupplementalFont.java │ │ │ │ ├── CTSystemColor.java │ │ │ │ ├── CTTable.java │ │ │ │ ├── CTTableBackgroundStyle.java │ │ │ │ ├── CTTableCell.java │ │ │ │ ├── CTTableCellBorderStyle.java │ │ │ │ ├── CTTableCellProperties.java │ │ │ │ ├── CTTableCol.java │ │ │ │ ├── CTTableGrid.java │ │ │ │ ├── CTTablePartStyle.java │ │ │ │ ├── CTTableProperties.java │ │ │ │ ├── CTTableRow.java │ │ │ │ ├── CTTableStyle.java │ │ │ │ ├── CTTableStyleCellStyle.java │ │ │ │ ├── CTTableStyleList.java │ │ │ │ ├── CTTableStyleTextStyle.java │ │ │ │ ├── CTTextAutonumberBullet.java │ │ │ │ ├── CTTextBlipBullet.java │ │ │ │ ├── CTTextBody.java │ │ │ │ ├── CTTextBodyProperties.java │ │ │ │ ├── CTTextBulletColorFollowText.java │ │ │ │ ├── CTTextBulletSizeFollowText.java │ │ │ │ ├── CTTextBulletSizePercent.java │ │ │ │ ├── CTTextBulletSizePoint.java │ │ │ │ ├── CTTextBulletTypefaceFollowText.java │ │ │ │ ├── CTTextCharBullet.java │ │ │ │ ├── CTTextCharacterProperties.java │ │ │ │ ├── CTTextField.java │ │ │ │ ├── CTTextFont.java │ │ │ │ ├── CTTextLineBreak.java │ │ │ │ ├── CTTextListStyle.java │ │ │ │ ├── CTTextNoAutofit.java │ │ │ │ ├── CTTextNoBullet.java │ │ │ │ ├── CTTextNormalAutofit.java │ │ │ │ ├── CTTextParagraph.java │ │ │ │ ├── CTTextParagraphProperties.java │ │ │ │ ├── CTTextShapeAutofit.java │ │ │ │ ├── CTTextSpacing.java │ │ │ │ ├── CTTextSpacingPercent.java │ │ │ │ ├── CTTextSpacingPoint.java │ │ │ │ ├── CTTextTabStop.java │ │ │ │ ├── CTTextTabStopList.java │ │ │ │ ├── CTTextUnderlineFillFollowText.java │ │ │ │ ├── CTTextUnderlineFillGroupWrapper.java │ │ │ │ ├── CTTextUnderlineLineFollowText.java │ │ │ │ ├── CTThemeableLineStyle.java │ │ │ │ ├── CTTileInfoProperties.java │ │ │ │ ├── CTTintEffect.java │ │ │ │ ├── CTTransform2D.java │ │ │ │ ├── CTTransformEffect.java │ │ │ │ ├── CTVector3D.java │ │ │ │ ├── CTVideoFile.java │ │ │ │ ├── CTWholeE2OFormatting.java │ │ │ │ ├── CTXYAdjustHandle.java │ │ │ │ ├── GraphicDocument.java │ │ │ │ ├── STAdjAngle.java │ │ │ │ ├── STAdjCoordinate.java │ │ │ │ ├── STAngle.java │ │ │ │ ├── STAnimationBuildType.java │ │ │ │ ├── STAnimationChartBuildType.java │ │ │ │ ├── STAnimationChartOnlyBuildType.java │ │ │ │ ├── STAnimationDgmBuildType.java │ │ │ │ ├── STAnimationDgmOnlyBuildType.java │ │ │ │ ├── STBevelPresetType.java │ │ │ │ ├── STBlackWhiteMode.java │ │ │ │ ├── STBlendMode.java │ │ │ │ ├── STBlipCompression.java │ │ │ │ ├── STChartBuildStep.java │ │ │ │ ├── STColorSchemeIndex.java │ │ │ │ ├── STCompoundLine.java │ │ │ │ ├── STCoordinate.java │ │ │ │ ├── STCoordinate32.java │ │ │ │ ├── STDgmBuildStep.java │ │ │ │ ├── STDrawingElementId.java │ │ │ │ ├── STEffectContainerType.java │ │ │ │ ├── STFOVAngle.java │ │ │ │ ├── STFixedAngle.java │ │ │ │ ├── STFixedPercentage.java │ │ │ │ ├── STFontCollectionIndex.java │ │ │ │ ├── STGeomGuideFormula.java │ │ │ │ ├── STGeomGuideName.java │ │ │ │ ├── STGuid.java │ │ │ │ ├── STHexBinary3.java │ │ │ │ ├── STLightRigDirection.java │ │ │ │ ├── STLightRigType.java │ │ │ │ ├── STLineCap.java │ │ │ │ ├── STLineEndLength.java │ │ │ │ ├── STLineEndType.java │ │ │ │ ├── STLineEndWidth.java │ │ │ │ ├── STLineWidth.java │ │ │ │ ├── STOnOffStyleType.java │ │ │ │ ├── STPanose.java │ │ │ │ ├── STPathFillMode.java │ │ │ │ ├── STPathShadeType.java │ │ │ │ ├── STPenAlignment.java │ │ │ │ ├── STPercentage.java │ │ │ │ ├── STPositiveCoordinate.java │ │ │ │ ├── STPositiveCoordinate32.java │ │ │ │ ├── STPositiveFixedAngle.java │ │ │ │ ├── STPositiveFixedPercentage.java │ │ │ │ ├── STPositivePercentage.java │ │ │ │ ├── STPresetCameraType.java │ │ │ │ ├── STPresetColorVal.java │ │ │ │ ├── STPresetLineDashVal.java │ │ │ │ ├── STPresetMaterialType.java │ │ │ │ ├── STPresetPatternVal.java │ │ │ │ ├── STPresetShadowVal.java │ │ │ │ ├── STRectAlignment.java │ │ │ │ ├── STSchemeColorVal.java │ │ │ │ ├── STShapeID.java │ │ │ │ ├── STShapeType.java │ │ │ │ ├── STStyleMatrixColumnIndex.java │ │ │ │ ├── STSystemColorVal.java │ │ │ │ ├── STTextAlignType.java │ │ │ │ ├── STTextAnchoringType.java │ │ │ │ ├── STTextAutonumberScheme.java │ │ │ │ ├── STTextBulletSizePercent.java │ │ │ │ ├── STTextBulletStartAtNum.java │ │ │ │ ├── STTextCapsType.java │ │ │ │ ├── STTextColumnCount.java │ │ │ │ ├── STTextFontAlignType.java │ │ │ │ ├── STTextFontScalePercent.java │ │ │ │ ├── STTextFontSize.java │ │ │ │ ├── STTextHorzOverflowType.java │ │ │ │ ├── STTextIndent.java │ │ │ │ ├── STTextIndentLevelType.java │ │ │ │ ├── STTextLanguageID.java │ │ │ │ ├── STTextMargin.java │ │ │ │ ├── STTextNonNegativePoint.java │ │ │ │ ├── STTextPoint.java │ │ │ │ ├── STTextShapeType.java │ │ │ │ ├── STTextSpacingPercent.java │ │ │ │ ├── STTextSpacingPoint.java │ │ │ │ ├── STTextStrikeType.java │ │ │ │ ├── STTextTabAlignType.java │ │ │ │ ├── STTextTypeface.java │ │ │ │ ├── STTextUnderlineType.java │ │ │ │ ├── STTextVertOverflowType.java │ │ │ │ ├── STTextVerticalType.java │ │ │ │ ├── STTextWrappingType.java │ │ │ │ ├── STTileFlipMode.java │ │ │ │ ├── TblDocument.java │ │ │ │ ├── TblStyleLstDocument.java │ │ │ │ ├── ThemeDocument.java │ │ │ │ ├── ThemeManagerDocument.java │ │ │ │ ├── ThemeOverrideDocument.java │ │ │ │ └── impl │ │ │ │ ├── BlipDocumentImpl.java │ │ │ │ ├── CTAdjPoint2DImpl.java │ │ │ │ ├── CTAdjustHandleListImpl.java │ │ │ │ ├── CTAlphaBiLevelEffectImpl.java │ │ │ │ ├── CTAlphaCeilingEffectImpl.java │ │ │ │ ├── CTAlphaFloorEffectImpl.java │ │ │ │ ├── CTAlphaInverseEffectImpl.java │ │ │ │ ├── CTAlphaModulateEffectImpl.java │ │ │ │ ├── CTAlphaModulateFixedEffectImpl.java │ │ │ │ ├── CTAlphaOutsetEffectImpl.java │ │ │ │ ├── CTAlphaReplaceEffectImpl.java │ │ │ │ ├── CTAngleImpl.java │ │ │ │ ├── CTAnimationChartBuildPropertiesImpl.java │ │ │ │ ├── CTAnimationChartElementImpl.java │ │ │ │ ├── CTAnimationDgmBuildPropertiesImpl.java │ │ │ │ ├── CTAnimationDgmElementImpl.java │ │ │ │ ├── CTAnimationElementChoiceImpl.java │ │ │ │ ├── CTAnimationGraphicalObjectBuildPropertiesImpl.java │ │ │ │ ├── CTAudioCDImpl.java │ │ │ │ ├── CTAudioCDTimeImpl.java │ │ │ │ ├── CTAudioFileImpl.java │ │ │ │ ├── CTBackdropImpl.java │ │ │ │ ├── CTBackgroundFillStyleListImpl.java │ │ │ │ ├── CTBackgroundFormattingImpl.java │ │ │ │ ├── CTBaseStylesImpl.java │ │ │ │ ├── CTBaseStylesOverrideImpl.java │ │ │ │ ├── CTBevelImpl.java │ │ │ │ ├── CTBiLevelEffectImpl.java │ │ │ │ ├── CTBlendEffectImpl.java │ │ │ │ ├── CTBlipFillPropertiesImpl.java │ │ │ │ ├── CTBlipImpl.java │ │ │ │ ├── CTBlurEffectImpl.java │ │ │ │ ├── CTCameraImpl.java │ │ │ │ ├── CTCell3DImpl.java │ │ │ │ ├── CTClipboardStyleSheetImpl.java │ │ │ │ ├── CTColorChangeEffectImpl.java │ │ │ │ ├── CTColorImpl.java │ │ │ │ ├── CTColorMRUImpl.java │ │ │ │ ├── CTColorMappingImpl.java │ │ │ │ ├── CTColorMappingOverrideImpl.java │ │ │ │ ├── CTColorReplaceEffectImpl.java │ │ │ │ ├── CTColorSchemeAndMappingImpl.java │ │ │ │ ├── CTColorSchemeImpl.java │ │ │ │ ├── CTColorSchemeListImpl.java │ │ │ │ ├── CTComplementTransformImpl.java │ │ │ │ ├── CTConnectionImpl.java │ │ │ │ ├── CTConnectionSiteImpl.java │ │ │ │ ├── CTConnectionSiteListImpl.java │ │ │ │ ├── CTConnectorLockingImpl.java │ │ │ │ ├── CTCustomColorImpl.java │ │ │ │ ├── CTCustomColorListImpl.java │ │ │ │ ├── CTCustomGeometry2DImpl.java │ │ │ │ ├── CTDashStopImpl.java │ │ │ │ ├── CTDashStopListImpl.java │ │ │ │ ├── CTDefaultShapeDefinitionImpl.java │ │ │ │ ├── CTDuotoneEffectImpl.java │ │ │ │ ├── CTEffectContainerImpl.java │ │ │ │ ├── CTEffectListImpl.java │ │ │ │ ├── CTEffectPropertiesImpl.java │ │ │ │ ├── CTEffectReferenceImpl.java │ │ │ │ ├── CTEffectStyleItemImpl.java │ │ │ │ ├── CTEffectStyleListImpl.java │ │ │ │ ├── CTEmbeddedWAVAudioFileImpl.java │ │ │ │ ├── CTEmptyElementImpl.java │ │ │ │ ├── CTFillEffectImpl.java │ │ │ │ ├── CTFillOverlayEffectImpl.java │ │ │ │ ├── CTFillPropertiesImpl.java │ │ │ │ ├── CTFillStyleListImpl.java │ │ │ │ ├── CTFixedPercentageImpl.java │ │ │ │ ├── CTFlatTextImpl.java │ │ │ │ ├── CTFontCollectionImpl.java │ │ │ │ ├── CTFontReferenceImpl.java │ │ │ │ ├── CTFontSchemeImpl.java │ │ │ │ ├── CTGammaTransformImpl.java │ │ │ │ ├── CTGeomGuideImpl.java │ │ │ │ ├── CTGeomGuideListImpl.java │ │ │ │ ├── CTGeomRectImpl.java │ │ │ │ ├── CTGlowEffectImpl.java │ │ │ │ ├── CTGradientFillPropertiesImpl.java │ │ │ │ ├── CTGradientStopImpl.java │ │ │ │ ├── CTGradientStopListImpl.java │ │ │ │ ├── CTGraphicalObjectDataImpl.java │ │ │ │ ├── CTGraphicalObjectFrameLockingImpl.java │ │ │ │ ├── CTGraphicalObjectImpl.java │ │ │ │ ├── CTGrayscaleEffectImpl.java │ │ │ │ ├── CTGrayscaleTransformImpl.java │ │ │ │ ├── CTGroupFillPropertiesImpl.java │ │ │ │ ├── CTGroupLockingImpl.java │ │ │ │ ├── CTGroupShapePropertiesImpl.java │ │ │ │ ├── CTGroupTransform2DImpl.java │ │ │ │ ├── CTGvmlConnectorImpl.java │ │ │ │ ├── CTGvmlConnectorNonVisualImpl.java │ │ │ │ ├── CTGvmlGraphicFrameNonVisualImpl.java │ │ │ │ ├── CTGvmlGraphicalObjectFrameImpl.java │ │ │ │ ├── CTGvmlGroupShapeImpl.java │ │ │ │ ├── CTGvmlGroupShapeNonVisualImpl.java │ │ │ │ ├── CTGvmlPictureImpl.java │ │ │ │ ├── CTGvmlPictureNonVisualImpl.java │ │ │ │ ├── CTGvmlShapeImpl.java │ │ │ │ ├── CTGvmlShapeNonVisualImpl.java │ │ │ │ ├── CTGvmlTextShapeImpl.java │ │ │ │ ├── CTGvmlUseShapeRectangleImpl.java │ │ │ │ ├── CTHSLEffectImpl.java │ │ │ │ ├── CTHslColorImpl.java │ │ │ │ ├── CTHyperlinkImpl.java │ │ │ │ ├── CTInnerShadowEffectImpl.java │ │ │ │ ├── CTInverseGammaTransformImpl.java │ │ │ │ ├── CTInverseTransformImpl.java │ │ │ │ ├── CTLightRigImpl.java │ │ │ │ ├── CTLineEndPropertiesImpl.java │ │ │ │ ├── CTLineJoinBevelImpl.java │ │ │ │ ├── CTLineJoinMiterPropertiesImpl.java │ │ │ │ ├── CTLineJoinRoundImpl.java │ │ │ │ ├── CTLinePropertiesImpl.java │ │ │ │ ├── CTLineStyleListImpl.java │ │ │ │ ├── CTLinearShadePropertiesImpl.java │ │ │ │ ├── CTLuminanceEffectImpl.java │ │ │ │ ├── CTNoFillPropertiesImpl.java │ │ │ │ ├── CTNonVisualConnectorPropertiesImpl.java │ │ │ │ ├── CTNonVisualDrawingPropsImpl.java │ │ │ │ ├── CTNonVisualDrawingShapePropsImpl.java │ │ │ │ ├── CTNonVisualGraphicFramePropertiesImpl.java │ │ │ │ ├── CTNonVisualGroupDrawingShapePropsImpl.java │ │ │ │ ├── CTNonVisualPicturePropertiesImpl.java │ │ │ │ ├── CTObjectStyleDefaultsImpl.java │ │ │ │ ├── CTOfficeArtExtensionImpl.java │ │ │ │ ├── CTOfficeArtExtensionListImpl.java │ │ │ │ ├── CTOfficeStyleSheetImpl.java │ │ │ │ ├── CTOuterShadowEffectImpl.java │ │ │ │ ├── CTPath2DArcToImpl.java │ │ │ │ ├── CTPath2DCloseImpl.java │ │ │ │ ├── CTPath2DCubicBezierToImpl.java │ │ │ │ ├── CTPath2DImpl.java │ │ │ │ ├── CTPath2DLineToImpl.java │ │ │ │ ├── CTPath2DListImpl.java │ │ │ │ ├── CTPath2DMoveToImpl.java │ │ │ │ ├── CTPath2DQuadBezierToImpl.java │ │ │ │ ├── CTPathShadePropertiesImpl.java │ │ │ │ ├── CTPatternFillPropertiesImpl.java │ │ │ │ ├── CTPercentageImpl.java │ │ │ │ ├── CTPictureLockingImpl.java │ │ │ │ ├── CTPoint2DImpl.java │ │ │ │ ├── CTPoint3DImpl.java │ │ │ │ ├── CTPolarAdjustHandleImpl.java │ │ │ │ ├── CTPositiveFixedAngleImpl.java │ │ │ │ ├── CTPositiveFixedPercentageImpl.java │ │ │ │ ├── CTPositivePercentageImpl.java │ │ │ │ ├── CTPositiveSize2DImpl.java │ │ │ │ ├── CTPresetColorImpl.java │ │ │ │ ├── CTPresetGeometry2DImpl.java │ │ │ │ ├── CTPresetLineDashPropertiesImpl.java │ │ │ │ ├── CTPresetShadowEffectImpl.java │ │ │ │ ├── CTPresetTextShapeImpl.java │ │ │ │ ├── CTQuickTimeFileImpl.java │ │ │ │ ├── CTRatioImpl.java │ │ │ │ ├── CTReflectionEffectImpl.java │ │ │ │ ├── CTRegularTextRunImpl.java │ │ │ │ ├── CTRelativeOffsetEffectImpl.java │ │ │ │ ├── CTRelativeRectImpl.java │ │ │ │ ├── CTSRgbColorImpl.java │ │ │ │ ├── CTScRgbColorImpl.java │ │ │ │ ├── CTScale2DImpl.java │ │ │ │ ├── CTScene3DImpl.java │ │ │ │ ├── CTSchemeColorImpl.java │ │ │ │ ├── CTShape3DImpl.java │ │ │ │ ├── CTShapeLockingImpl.java │ │ │ │ ├── CTShapePropertiesImpl.java │ │ │ │ ├── CTShapeStyleImpl.java │ │ │ │ ├── CTSoftEdgesEffectImpl.java │ │ │ │ ├── CTSolidColorFillPropertiesImpl.java │ │ │ │ ├── CTSphereCoordsImpl.java │ │ │ │ ├── CTStretchInfoPropertiesImpl.java │ │ │ │ ├── CTStyleMatrixImpl.java │ │ │ │ ├── CTStyleMatrixReferenceImpl.java │ │ │ │ ├── CTSupplementalFontImpl.java │ │ │ │ ├── CTSystemColorImpl.java │ │ │ │ ├── CTTableBackgroundStyleImpl.java │ │ │ │ ├── CTTableCellBorderStyleImpl.java │ │ │ │ ├── CTTableCellImpl.java │ │ │ │ ├── CTTableCellPropertiesImpl.java │ │ │ │ ├── CTTableColImpl.java │ │ │ │ ├── CTTableGridImpl.java │ │ │ │ ├── CTTableImpl.java │ │ │ │ ├── CTTablePartStyleImpl.java │ │ │ │ ├── CTTablePropertiesImpl.java │ │ │ │ ├── CTTableRowImpl.java │ │ │ │ ├── CTTableStyleCellStyleImpl.java │ │ │ │ ├── CTTableStyleImpl.java │ │ │ │ ├── CTTableStyleListImpl.java │ │ │ │ ├── CTTableStyleTextStyleImpl.java │ │ │ │ ├── CTTextAutonumberBulletImpl.java │ │ │ │ ├── CTTextBlipBulletImpl.java │ │ │ │ ├── CTTextBodyImpl.java │ │ │ │ ├── CTTextBodyPropertiesImpl.java │ │ │ │ ├── CTTextBulletColorFollowTextImpl.java │ │ │ │ ├── CTTextBulletSizeFollowTextImpl.java │ │ │ │ ├── CTTextBulletSizePercentImpl.java │ │ │ │ ├── CTTextBulletSizePointImpl.java │ │ │ │ ├── CTTextBulletTypefaceFollowTextImpl.java │ │ │ │ ├── CTTextCharBulletImpl.java │ │ │ │ ├── CTTextCharacterPropertiesImpl.java │ │ │ │ ├── CTTextFieldImpl.java │ │ │ │ ├── CTTextFontImpl.java │ │ │ │ ├── CTTextLineBreakImpl.java │ │ │ │ ├── CTTextListStyleImpl.java │ │ │ │ ├── CTTextNoAutofitImpl.java │ │ │ │ ├── CTTextNoBulletImpl.java │ │ │ │ ├── CTTextNormalAutofitImpl.java │ │ │ │ ├── CTTextParagraphImpl.java │ │ │ │ ├── CTTextParagraphPropertiesImpl.java │ │ │ │ ├── CTTextShapeAutofitImpl.java │ │ │ │ ├── CTTextSpacingImpl.java │ │ │ │ ├── CTTextSpacingPercentImpl.java │ │ │ │ ├── CTTextSpacingPointImpl.java │ │ │ │ ├── CTTextTabStopImpl.java │ │ │ │ ├── CTTextTabStopListImpl.java │ │ │ │ ├── CTTextUnderlineFillFollowTextImpl.java │ │ │ │ ├── CTTextUnderlineFillGroupWrapperImpl.java │ │ │ │ ├── CTTextUnderlineLineFollowTextImpl.java │ │ │ │ ├── CTThemeableLineStyleImpl.java │ │ │ │ ├── CTTileInfoPropertiesImpl.java │ │ │ │ ├── CTTintEffectImpl.java │ │ │ │ ├── CTTransform2DImpl.java │ │ │ │ ├── CTTransformEffectImpl.java │ │ │ │ ├── CTVector3DImpl.java │ │ │ │ ├── CTVideoFileImpl.java │ │ │ │ ├── CTWholeE2OFormattingImpl.java │ │ │ │ ├── CTXYAdjustHandleImpl.java │ │ │ │ ├── GraphicDocumentImpl.java │ │ │ │ ├── STAdjAngleImpl.java │ │ │ │ ├── STAdjCoordinateImpl.java │ │ │ │ ├── STAngleImpl.java │ │ │ │ ├── STAnimationBuildTypeImpl.java │ │ │ │ ├── STAnimationChartBuildTypeImpl.java │ │ │ │ ├── STAnimationChartOnlyBuildTypeImpl.java │ │ │ │ ├── STAnimationDgmBuildTypeImpl.java │ │ │ │ ├── STAnimationDgmOnlyBuildTypeImpl.java │ │ │ │ ├── STBevelPresetTypeImpl.java │ │ │ │ ├── STBlackWhiteModeImpl.java │ │ │ │ ├── STBlendModeImpl.java │ │ │ │ ├── STBlipCompressionImpl.java │ │ │ │ ├── STChartBuildStepImpl.java │ │ │ │ ├── STColorSchemeIndexImpl.java │ │ │ │ ├── STCompoundLineImpl.java │ │ │ │ ├── STCoordinate32Impl.java │ │ │ │ ├── STCoordinateImpl.java │ │ │ │ ├── STDgmBuildStepImpl.java │ │ │ │ ├── STDrawingElementIdImpl.java │ │ │ │ ├── STEffectContainerTypeImpl.java │ │ │ │ ├── STFOVAngleImpl.java │ │ │ │ ├── STFixedAngleImpl.java │ │ │ │ ├── STFixedPercentageImpl.java │ │ │ │ ├── STFontCollectionIndexImpl.java │ │ │ │ ├── STGeomGuideFormulaImpl.java │ │ │ │ ├── STGeomGuideNameImpl.java │ │ │ │ ├── STGuidImpl.java │ │ │ │ ├── STHexBinary3Impl.java │ │ │ │ ├── STLightRigDirectionImpl.java │ │ │ │ ├── STLightRigTypeImpl.java │ │ │ │ ├── STLineCapImpl.java │ │ │ │ ├── STLineEndLengthImpl.java │ │ │ │ ├── STLineEndTypeImpl.java │ │ │ │ ├── STLineEndWidthImpl.java │ │ │ │ ├── STLineWidthImpl.java │ │ │ │ ├── STOnOffStyleTypeImpl.java │ │ │ │ ├── STPanoseImpl.java │ │ │ │ ├── STPathFillModeImpl.java │ │ │ │ ├── STPathShadeTypeImpl.java │ │ │ │ ├── STPenAlignmentImpl.java │ │ │ │ ├── STPercentageImpl.java │ │ │ │ ├── STPositiveCoordinate32Impl.java │ │ │ │ ├── STPositiveCoordinateImpl.java │ │ │ │ ├── STPositiveFixedAngleImpl.java │ │ │ │ ├── STPositiveFixedPercentageImpl.java │ │ │ │ ├── STPositivePercentageImpl.java │ │ │ │ ├── STPresetCameraTypeImpl.java │ │ │ │ ├── STPresetColorValImpl.java │ │ │ │ ├── STPresetLineDashValImpl.java │ │ │ │ ├── STPresetMaterialTypeImpl.java │ │ │ │ ├── STPresetPatternValImpl.java │ │ │ │ ├── STPresetShadowValImpl.java │ │ │ │ ├── STRectAlignmentImpl.java │ │ │ │ ├── STSchemeColorValImpl.java │ │ │ │ ├── STShapeIDImpl.java │ │ │ │ ├── STShapeTypeImpl.java │ │ │ │ ├── STStyleMatrixColumnIndexImpl.java │ │ │ │ ├── STSystemColorValImpl.java │ │ │ │ ├── STTextAlignTypeImpl.java │ │ │ │ ├── STTextAnchoringTypeImpl.java │ │ │ │ ├── STTextAutonumberSchemeImpl.java │ │ │ │ ├── STTextBulletSizePercentImpl.java │ │ │ │ ├── STTextBulletStartAtNumImpl.java │ │ │ │ ├── STTextCapsTypeImpl.java │ │ │ │ ├── STTextColumnCountImpl.java │ │ │ │ ├── STTextFontAlignTypeImpl.java │ │ │ │ ├── STTextFontScalePercentImpl.java │ │ │ │ ├── STTextFontSizeImpl.java │ │ │ │ ├── STTextHorzOverflowTypeImpl.java │ │ │ │ ├── STTextIndentImpl.java │ │ │ │ ├── STTextIndentLevelTypeImpl.java │ │ │ │ ├── STTextLanguageIDImpl.java │ │ │ │ ├── STTextMarginImpl.java │ │ │ │ ├── STTextNonNegativePointImpl.java │ │ │ │ ├── STTextPointImpl.java │ │ │ │ ├── STTextShapeTypeImpl.java │ │ │ │ ├── STTextSpacingPercentImpl.java │ │ │ │ ├── STTextSpacingPointImpl.java │ │ │ │ ├── STTextStrikeTypeImpl.java │ │ │ │ ├── STTextTabAlignTypeImpl.java │ │ │ │ ├── STTextTypefaceImpl.java │ │ │ │ ├── STTextUnderlineTypeImpl.java │ │ │ │ ├── STTextVertOverflowTypeImpl.java │ │ │ │ ├── STTextVerticalTypeImpl.java │ │ │ │ ├── STTextWrappingTypeImpl.java │ │ │ │ ├── STTileFlipModeImpl.java │ │ │ │ ├── TblDocumentImpl.java │ │ │ │ ├── TblStyleLstDocumentImpl.java │ │ │ │ ├── ThemeDocumentImpl.java │ │ │ │ ├── ThemeManagerDocumentImpl.java │ │ │ │ └── ThemeOverrideDocumentImpl.java │ │ │ ├── officeDocument │ │ │ └── x2006 │ │ │ │ └── relationships │ │ │ │ ├── BlipAttribute.java │ │ │ │ ├── CsAttribute.java │ │ │ │ ├── DmAttribute.java │ │ │ │ ├── EmbedAttribute.java │ │ │ │ ├── HrefAttribute.java │ │ │ │ ├── IdAttribute.java │ │ │ │ ├── LinkAttribute.java │ │ │ │ ├── LoAttribute.java │ │ │ │ ├── PictAttribute.java │ │ │ │ ├── QsAttribute.java │ │ │ │ ├── STRelationshipId.java │ │ │ │ └── impl │ │ │ │ ├── BlipAttributeImpl.java │ │ │ │ ├── CsAttributeImpl.java │ │ │ │ ├── DmAttributeImpl.java │ │ │ │ ├── EmbedAttributeImpl.java │ │ │ │ ├── HrefAttributeImpl.java │ │ │ │ ├── IdAttributeImpl.java │ │ │ │ ├── LinkAttributeImpl.java │ │ │ │ ├── LoAttributeImpl.java │ │ │ │ ├── PictAttributeImpl.java │ │ │ │ ├── QsAttributeImpl.java │ │ │ │ └── STRelationshipIdImpl.java │ │ │ └── presentationml │ │ │ └── x2006 │ │ │ └── main │ │ │ ├── CTApplicationNonVisualDrawingProps.java │ │ │ ├── CTBackground.java │ │ │ ├── CTBackgroundProperties.java │ │ │ ├── CTBuildList.java │ │ │ ├── CTCommonSlideData.java │ │ │ ├── CTCommonSlideViewProperties.java │ │ │ ├── CTCommonViewProperties.java │ │ │ ├── CTConnector.java │ │ │ ├── CTConnectorNonVisual.java │ │ │ ├── CTControl.java │ │ │ ├── CTControlList.java │ │ │ ├── CTCornerDirectionTransition.java │ │ │ ├── CTCustomShow.java │ │ │ ├── CTCustomShowId.java │ │ │ ├── CTCustomShowList.java │ │ │ ├── CTCustomerData.java │ │ │ ├── CTCustomerDataList.java │ │ │ ├── CTEightDirectionTransition.java │ │ │ ├── CTEmbeddedFontDataId.java │ │ │ ├── CTEmbeddedFontList.java │ │ │ ├── CTEmbeddedFontListEntry.java │ │ │ ├── CTEmpty.java │ │ │ ├── CTExtension.java │ │ │ ├── CTExtensionList.java │ │ │ ├── CTExtensionListModify.java │ │ │ ├── CTGraphicalObjectFrame.java │ │ │ ├── CTGraphicalObjectFrameNonVisual.java │ │ │ ├── CTGroupShape.java │ │ │ ├── CTGroupShapeNonVisual.java │ │ │ ├── CTGuide.java │ │ │ ├── CTGuideList.java │ │ │ ├── CTHandoutMaster.java │ │ │ ├── CTHandoutMasterIdList.java │ │ │ ├── CTHandoutMasterIdListEntry.java │ │ │ ├── CTHeaderFooter.java │ │ │ ├── CTHtmlPublishProperties.java │ │ │ ├── CTInOutTransition.java │ │ │ ├── CTIndexRange.java │ │ │ ├── CTKinsoku.java │ │ │ ├── CTModifyVerifier.java │ │ │ ├── CTNormalViewPortion.java │ │ │ ├── CTNormalViewProperties.java │ │ │ ├── CTNotesMaster.java │ │ │ ├── CTNotesMasterIdList.java │ │ │ ├── CTNotesMasterIdListEntry.java │ │ │ ├── CTNotesSlide.java │ │ │ ├── CTNotesTextViewProperties.java │ │ │ ├── CTNotesViewProperties.java │ │ │ ├── CTOleObject.java │ │ │ ├── CTOleObjectEmbed.java │ │ │ ├── CTOleObjectLink.java │ │ │ ├── CTOptionalBlackTransition.java │ │ │ ├── CTOrientationTransition.java │ │ │ ├── CTOutlineViewProperties.java │ │ │ ├── CTOutlineViewSlideEntry.java │ │ │ ├── CTOutlineViewSlideList.java │ │ │ ├── CTPhotoAlbum.java │ │ │ ├── CTPicture.java │ │ │ ├── CTPictureNonVisual.java │ │ │ ├── CTPlaceholder.java │ │ │ ├── CTPresentation.java │ │ │ ├── CTPresentationProperties.java │ │ │ ├── CTPrintProperties.java │ │ │ ├── CTShape.java │ │ │ ├── CTShapeNonVisual.java │ │ │ ├── CTShowInfoBrowse.java │ │ │ ├── CTShowInfoKiosk.java │ │ │ ├── CTShowProperties.java │ │ │ ├── CTSideDirectionTransition.java │ │ │ ├── CTSlide.java │ │ │ ├── CTSlideIdList.java │ │ │ ├── CTSlideIdListEntry.java │ │ │ ├── CTSlideLayout.java │ │ │ ├── CTSlideLayoutIdList.java │ │ │ ├── CTSlideLayoutIdListEntry.java │ │ │ ├── CTSlideMaster.java │ │ │ ├── CTSlideMasterIdList.java │ │ │ ├── CTSlideMasterIdListEntry.java │ │ │ ├── CTSlideMasterTextStyles.java │ │ │ ├── CTSlideRelationshipList.java │ │ │ ├── CTSlideRelationshipListEntry.java │ │ │ ├── CTSlideSize.java │ │ │ ├── CTSlideSorterViewProperties.java │ │ │ ├── CTSlideSyncProperties.java │ │ │ ├── CTSlideTiming.java │ │ │ ├── CTSlideTransition.java │ │ │ ├── CTSlideViewProperties.java │ │ │ ├── CTSmartTags.java │ │ │ ├── CTSplitTransition.java │ │ │ ├── CTStringTag.java │ │ │ ├── CTTagList.java │ │ │ ├── CTTagsData.java │ │ │ ├── CTTimeNodeList.java │ │ │ ├── CTTransitionSoundAction.java │ │ │ ├── CTTransitionStartSoundAction.java │ │ │ ├── CTViewProperties.java │ │ │ ├── CTWebProperties.java │ │ │ ├── CTWheelTransition.java │ │ │ ├── HandoutMasterDocument.java │ │ │ ├── NotesDocument.java │ │ │ ├── NotesMasterDocument.java │ │ │ ├── OleObjDocument.java │ │ │ ├── PresentationDocument.java │ │ │ ├── PresentationPrDocument.java │ │ │ ├── STAlgClass.java │ │ │ ├── STAlgType.java │ │ │ ├── STBookmarkIdSeed.java │ │ │ ├── STCryptProv.java │ │ │ ├── STDirection.java │ │ │ ├── STHtmlPublishWebBrowserSupport.java │ │ │ ├── STIndex.java │ │ │ ├── STIterateType.java │ │ │ ├── STName.java │ │ │ ├── STOleObjectFollowColorScheme.java │ │ │ ├── STPhotoAlbumFrameShape.java │ │ │ ├── STPhotoAlbumLayout.java │ │ │ ├── STPlaceholderSize.java │ │ │ ├── STPlaceholderType.java │ │ │ ├── STPrintColorMode.java │ │ │ ├── STPrintWhat.java │ │ │ ├── STSlideId.java │ │ │ ├── STSlideLayoutId.java │ │ │ ├── STSlideLayoutType.java │ │ │ ├── STSlideMasterId.java │ │ │ ├── STSlideSizeCoordinate.java │ │ │ ├── STSlideSizeType.java │ │ │ ├── STSplitterBarState.java │ │ │ ├── STTransitionCornerDirectionType.java │ │ │ ├── STTransitionEightDirectionType.java │ │ │ ├── STTransitionInOutDirectionType.java │ │ │ ├── STTransitionSideDirectionType.java │ │ │ ├── STTransitionSpeed.java │ │ │ ├── STViewType.java │ │ │ ├── STWebColorType.java │ │ │ ├── STWebEncoding.java │ │ │ ├── STWebScreenSize.java │ │ │ ├── SldDocument.java │ │ │ ├── SldLayoutDocument.java │ │ │ ├── SldMasterDocument.java │ │ │ ├── SldSyncPrDocument.java │ │ │ ├── TagLstDocument.java │ │ │ ├── ViewPrDocument.java │ │ │ └── impl │ │ │ ├── CTApplicationNonVisualDrawingPropsImpl.java │ │ │ ├── CTBackgroundImpl.java │ │ │ ├── CTBackgroundPropertiesImpl.java │ │ │ ├── CTBuildListImpl.java │ │ │ ├── CTCommonSlideDataImpl.java │ │ │ ├── CTCommonSlideViewPropertiesImpl.java │ │ │ ├── CTCommonViewPropertiesImpl.java │ │ │ ├── CTConnectorImpl.java │ │ │ ├── CTConnectorNonVisualImpl.java │ │ │ ├── CTControlImpl.java │ │ │ ├── CTControlListImpl.java │ │ │ ├── CTCornerDirectionTransitionImpl.java │ │ │ ├── CTCustomShowIdImpl.java │ │ │ ├── CTCustomShowImpl.java │ │ │ ├── CTCustomShowListImpl.java │ │ │ ├── CTCustomerDataImpl.java │ │ │ ├── CTCustomerDataListImpl.java │ │ │ ├── CTEightDirectionTransitionImpl.java │ │ │ ├── CTEmbeddedFontDataIdImpl.java │ │ │ ├── CTEmbeddedFontListEntryImpl.java │ │ │ ├── CTEmbeddedFontListImpl.java │ │ │ ├── CTEmptyImpl.java │ │ │ ├── CTExtensionImpl.java │ │ │ ├── CTExtensionListImpl.java │ │ │ ├── CTExtensionListModifyImpl.java │ │ │ ├── CTGraphicalObjectFrameImpl.java │ │ │ ├── CTGraphicalObjectFrameNonVisualImpl.java │ │ │ ├── CTGroupShapeImpl.java │ │ │ ├── CTGroupShapeNonVisualImpl.java │ │ │ ├── CTGuideImpl.java │ │ │ ├── CTGuideListImpl.java │ │ │ ├── CTHandoutMasterIdListEntryImpl.java │ │ │ ├── CTHandoutMasterIdListImpl.java │ │ │ ├── CTHandoutMasterImpl.java │ │ │ ├── CTHeaderFooterImpl.java │ │ │ ├── CTHtmlPublishPropertiesImpl.java │ │ │ ├── CTInOutTransitionImpl.java │ │ │ ├── CTIndexRangeImpl.java │ │ │ ├── CTKinsokuImpl.java │ │ │ ├── CTModifyVerifierImpl.java │ │ │ ├── CTNormalViewPortionImpl.java │ │ │ ├── CTNormalViewPropertiesImpl.java │ │ │ ├── CTNotesMasterIdListEntryImpl.java │ │ │ ├── CTNotesMasterIdListImpl.java │ │ │ ├── CTNotesMasterImpl.java │ │ │ ├── CTNotesSlideImpl.java │ │ │ ├── CTNotesTextViewPropertiesImpl.java │ │ │ ├── CTNotesViewPropertiesImpl.java │ │ │ ├── CTOleObjectEmbedImpl.java │ │ │ ├── CTOleObjectImpl.java │ │ │ ├── CTOleObjectLinkImpl.java │ │ │ ├── CTOptionalBlackTransitionImpl.java │ │ │ ├── CTOrientationTransitionImpl.java │ │ │ ├── CTOutlineViewPropertiesImpl.java │ │ │ ├── CTOutlineViewSlideEntryImpl.java │ │ │ ├── CTOutlineViewSlideListImpl.java │ │ │ ├── CTPhotoAlbumImpl.java │ │ │ ├── CTPictureImpl.java │ │ │ ├── CTPictureNonVisualImpl.java │ │ │ ├── CTPlaceholderImpl.java │ │ │ ├── CTPresentationImpl.java │ │ │ ├── CTPresentationPropertiesImpl.java │ │ │ ├── CTPrintPropertiesImpl.java │ │ │ ├── CTShapeImpl.java │ │ │ ├── CTShapeNonVisualImpl.java │ │ │ ├── CTShowInfoBrowseImpl.java │ │ │ ├── CTShowInfoKioskImpl.java │ │ │ ├── CTShowPropertiesImpl.java │ │ │ ├── CTSideDirectionTransitionImpl.java │ │ │ ├── CTSlideIdListEntryImpl.java │ │ │ ├── CTSlideIdListImpl.java │ │ │ ├── CTSlideImpl.java │ │ │ ├── CTSlideLayoutIdListEntryImpl.java │ │ │ ├── CTSlideLayoutIdListImpl.java │ │ │ ├── CTSlideLayoutImpl.java │ │ │ ├── CTSlideMasterIdListEntryImpl.java │ │ │ ├── CTSlideMasterIdListImpl.java │ │ │ ├── CTSlideMasterImpl.java │ │ │ ├── CTSlideMasterTextStylesImpl.java │ │ │ ├── CTSlideRelationshipListEntryImpl.java │ │ │ ├── CTSlideRelationshipListImpl.java │ │ │ ├── CTSlideSizeImpl.java │ │ │ ├── CTSlideSorterViewPropertiesImpl.java │ │ │ ├── CTSlideSyncPropertiesImpl.java │ │ │ ├── CTSlideTimingImpl.java │ │ │ ├── CTSlideTransitionImpl.java │ │ │ ├── CTSlideViewPropertiesImpl.java │ │ │ ├── CTSmartTagsImpl.java │ │ │ ├── CTSplitTransitionImpl.java │ │ │ ├── CTStringTagImpl.java │ │ │ ├── CTTagListImpl.java │ │ │ ├── CTTagsDataImpl.java │ │ │ ├── CTTimeNodeListImpl.java │ │ │ ├── CTTransitionSoundActionImpl.java │ │ │ ├── CTTransitionStartSoundActionImpl.java │ │ │ ├── CTViewPropertiesImpl.java │ │ │ ├── CTWebPropertiesImpl.java │ │ │ ├── CTWheelTransitionImpl.java │ │ │ ├── HandoutMasterDocumentImpl.java │ │ │ ├── NotesDocumentImpl.java │ │ │ ├── NotesMasterDocumentImpl.java │ │ │ ├── OleObjDocumentImpl.java │ │ │ ├── PresentationDocumentImpl.java │ │ │ ├── PresentationPrDocumentImpl.java │ │ │ ├── STAlgClassImpl.java │ │ │ ├── STAlgTypeImpl.java │ │ │ ├── STBookmarkIdSeedImpl.java │ │ │ ├── STCryptProvImpl.java │ │ │ ├── STDirectionImpl.java │ │ │ ├── STHtmlPublishWebBrowserSupportImpl.java │ │ │ ├── STIndexImpl.java │ │ │ ├── STIterateTypeImpl.java │ │ │ ├── STNameImpl.java │ │ │ ├── STOleObjectFollowColorSchemeImpl.java │ │ │ ├── STPhotoAlbumFrameShapeImpl.java │ │ │ ├── STPhotoAlbumLayoutImpl.java │ │ │ ├── STPlaceholderSizeImpl.java │ │ │ ├── STPlaceholderTypeImpl.java │ │ │ ├── STPrintColorModeImpl.java │ │ │ ├── STPrintWhatImpl.java │ │ │ ├── STSlideIdImpl.java │ │ │ ├── STSlideLayoutIdImpl.java │ │ │ ├── STSlideLayoutTypeImpl.java │ │ │ ├── STSlideMasterIdImpl.java │ │ │ ├── STSlideSizeCoordinateImpl.java │ │ │ ├── STSlideSizeTypeImpl.java │ │ │ ├── STSplitterBarStateImpl.java │ │ │ ├── STTransitionCornerDirectionTypeImpl.java │ │ │ ├── STTransitionEightDirectionTypeImpl.java │ │ │ ├── STTransitionInOutDirectionTypeImpl.java │ │ │ ├── STTransitionSideDirectionTypeImpl.java │ │ │ ├── STTransitionSpeedImpl.java │ │ │ ├── STViewTypeImpl.java │ │ │ ├── STWebColorTypeImpl.java │ │ │ ├── STWebEncodingImpl.java │ │ │ ├── STWebScreenSizeImpl.java │ │ │ ├── SldDocumentImpl.java │ │ │ ├── SldLayoutDocumentImpl.java │ │ │ ├── SldMasterDocumentImpl.java │ │ │ ├── SldSyncPrDocumentImpl.java │ │ │ ├── TagLstDocumentImpl.java │ │ │ └── ViewPrDocumentImpl.java │ └── sun │ │ └── awt │ │ └── geom │ │ ├── AreaOp.java │ │ ├── ChainEnd.java │ │ ├── Crossings.java │ │ ├── Curve.java │ │ ├── CurveLink.java │ │ ├── Edge.java │ │ ├── Order0.java │ │ ├── Order1.java │ │ ├── Order2.java │ │ └── Order3.java │ ├── main3.iml │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ └── ic_launcher_background.xml │ ├── layout │ ├── activity_main.xml │ └── activity_open.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ └── values │ └── strings.xml ├── build.gradle ├── build └── intermediates │ └── dex-cache │ └── cache.xml ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | .idea/ 4 | build/ 5 | .DS_Store 6 | *.iml 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | this is from https://github.com/qhm123/POI-Android pptx. part. I modify some, to make it build with gradle . 更新gradle版本和Android sdk版本 -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/libs/commons-codec-1.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/69d2ff198fb11dd8d35d85ba82ddb67f2864afa0/app/libs/commons-codec-1.5.jar -------------------------------------------------------------------------------- /app/libs/commons-logging-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/69d2ff198fb11dd8d35d85ba82ddb67f2864afa0/app/libs/commons-logging-1.1.jar -------------------------------------------------------------------------------- /app/libs/dom4j-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/69d2ff198fb11dd8d35d85ba82ddb67f2864afa0/app/libs/dom4j-1.6.1.jar -------------------------------------------------------------------------------- /app/libs/jsr173_1.0_api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/69d2ff198fb11dd8d35d85ba82ddb67f2864afa0/app/libs/jsr173_1.0_api.jar -------------------------------------------------------------------------------- /app/libs/log4j-1.2.13.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/69d2ff198fb11dd8d35d85ba82ddb67f2864afa0/app/libs/log4j-1.2.13.jar -------------------------------------------------------------------------------- /app/libs/org-apache-poi-xslf-mofel-geom-PresetGeometries.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/69d2ff198fb11dd8d35d85ba82ddb67f2864afa0/app/libs/org-apache-poi-xslf-mofel-geom-PresetGeometries.jar -------------------------------------------------------------------------------- /app/libs/schemaorg_apache_xmlbeans_new.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/69d2ff198fb11dd8d35d85ba82ddb67f2864afa0/app/libs/schemaorg_apache_xmlbeans_new.jar -------------------------------------------------------------------------------- /app/libs/sjsxp.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/69d2ff198fb11dd8d35d85ba82ddb67f2864afa0/app/libs/sjsxp.jar -------------------------------------------------------------------------------- /app/libs/xmlbeans-2.3.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/69d2ff198fb11dd8d35d85ba82ddb67f2864afa0/app/libs/xmlbeans-2.3.0.jar -------------------------------------------------------------------------------- /app/proguard-rules.txt: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /Applications/Android Studio.app/sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the ProGuard 5 | # include property in project.properties. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} -------------------------------------------------------------------------------- /app/src/main/java/and/awt/Font.java: -------------------------------------------------------------------------------- 1 | package and.awt; 2 | 3 | public class Font { 4 | 5 | public static final String PLAIN = null; 6 | public static final int ROMAN_BASELINE = 0; 7 | public static final int CENTER_BASELINE = 0; 8 | public static final int HANGING_BASELINE = 0; 9 | 10 | public Font(String fontName, String plain2, int i) { 11 | // TODO Auto-generated constructor stub 12 | } 13 | 14 | public String getName() { 15 | // TODO Auto-generated method stub 16 | return null; 17 | } 18 | 19 | public boolean isPlain() { 20 | // TODO Auto-generated method stub 21 | return false; 22 | } 23 | 24 | public boolean isBold() { 25 | // TODO Auto-generated method stub 26 | return false; 27 | } 28 | 29 | public boolean isItalic() { 30 | // TODO Auto-generated method stub 31 | return false; 32 | } 33 | 34 | public boolean canDisplay(char bulletChar) { 35 | // TODO Auto-generated method stub 36 | return false; 37 | } 38 | 39 | } 40 | -------------------------------------------------------------------------------- /app/src/main/java/and/awt/Image.java: -------------------------------------------------------------------------------- 1 | package and.awt; 2 | 3 | import android.graphics.Bitmap; 4 | 5 | public class Image { 6 | 7 | public static final String SCALE_SMOOTH = null; 8 | public Bitmap bm; 9 | 10 | public Image(Bitmap bm) { 11 | this.bm = bm; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /app/src/main/java/and/awt/ImageIO.java: -------------------------------------------------------------------------------- 1 | package and.awt; 2 | 3 | import java.io.ByteArrayInputStream; 4 | import java.io.InputStream; 5 | 6 | import android.graphics.Bitmap; 7 | import android.graphics.BitmapFactory; 8 | 9 | public class ImageIO { 10 | 11 | public static BufferedImage read(InputStream byteArrayInputStream) { 12 | Bitmap bm = BitmapFactory.decodeStream(byteArrayInputStream); 13 | return bm == null ? null : new BufferedImage(bm); 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /app/src/main/java/net/pbdavey/awt/Font.java: -------------------------------------------------------------------------------- 1 | package net.pbdavey.awt; 2 | 3 | import android.graphics.Typeface; 4 | 5 | public class Font { 6 | Typeface typeFace; 7 | int size; 8 | 9 | public Font(String name, int style, int i) { 10 | // TODO - convert Font style to Typeface style 11 | typeFace = Typeface.create(name, style); 12 | size = i; 13 | } 14 | 15 | public Font() { 16 | typeFace = Typeface.create(Typeface.DEFAULT, Typeface.NORMAL); 17 | size = 8; 18 | } 19 | 20 | public int getSize() { 21 | return size; 22 | } 23 | 24 | public String getName() { 25 | return typeFace.toString(); 26 | } 27 | 28 | public int getStyle() { 29 | // TODO - convert Typeface style to Font style 30 | return typeFace.getStyle(); 31 | } 32 | 33 | public Typeface getTypeFace() { 34 | return this.typeFace; 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /app/src/main/java/net/pbdavey/awt/FontMetrics.java: -------------------------------------------------------------------------------- 1 | package net.pbdavey.awt; 2 | 3 | import android.graphics.Paint; 4 | 5 | public class FontMetrics { 6 | Paint paint; 7 | 8 | public FontMetrics(Paint paint) { 9 | this.paint = paint; 10 | } 11 | 12 | public int getHeight() { 13 | return paint.getFontMetricsInt().ascent + 14 | paint.getFontMetricsInt().descent + 15 | paint.getFontMetricsInt().leading; 16 | } 17 | 18 | public int stringWidth(String longString) { 19 | return (int) paint.measureText(longString); 20 | } 21 | 22 | public int getDescent() { 23 | return this.paint.getFontMetricsInt().descent; 24 | } 25 | 26 | public int getMaxAscent() { 27 | return this.paint.getFontMetricsInt().ascent; 28 | } 29 | 30 | } 31 | -------------------------------------------------------------------------------- /app/src/main/java/net/pbdavey/awt/GraphicsEnvironment.java: -------------------------------------------------------------------------------- 1 | package net.pbdavey.awt; 2 | 3 | public class GraphicsEnvironment { 4 | 5 | public static boolean isHeadless() { 6 | // TODO Auto-generated method stub 7 | return false; 8 | } 9 | 10 | } 11 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/CTAlphaCeilingEffect.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_AlphaCeilingEffect 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTAlphaCeilingEffect 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML CT_AlphaCeilingEffect(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is a complex type. 15 | */ 16 | public interface CTAlphaCeilingEffect extends org.apache.xmlbeans.XmlObject 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(CTAlphaCeilingEffect.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("ctalphaceilingeffect8a4btype"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/CTAlphaFloorEffect.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_AlphaFloorEffect 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTAlphaFloorEffect 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML CT_AlphaFloorEffect(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is a complex type. 15 | */ 16 | public interface CTAlphaFloorEffect extends org.apache.xmlbeans.XmlObject 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(CTAlphaFloorEffect.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("ctalphaflooreffectcedatype"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/CTComplementTransform.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_ComplementTransform 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTComplementTransform 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML CT_ComplementTransform(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is a complex type. 15 | */ 16 | public interface CTComplementTransform extends org.apache.xmlbeans.XmlObject 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(CTComplementTransform.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("ctcomplementtransform6e17type"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/CTEmptyElement.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_EmptyElement 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTEmptyElement 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML CT_EmptyElement(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is a complex type. 15 | */ 16 | public interface CTEmptyElement extends org.apache.xmlbeans.XmlObject 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(CTEmptyElement.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("ctemptyelement05catype"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/CTGammaTransform.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_GammaTransform 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTGammaTransform 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML CT_GammaTransform(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is a complex type. 15 | */ 16 | public interface CTGammaTransform extends org.apache.xmlbeans.XmlObject 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(CTGammaTransform.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("ctgammatransform06a0type"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/CTGrayscaleEffect.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_GrayscaleEffect 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTGrayscaleEffect 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML CT_GrayscaleEffect(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is a complex type. 15 | */ 16 | public interface CTGrayscaleEffect extends org.apache.xmlbeans.XmlObject 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(CTGrayscaleEffect.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("ctgrayscaleeffect3b69type"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/CTGrayscaleTransform.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_GrayscaleTransform 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTGrayscaleTransform 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML CT_GrayscaleTransform(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is a complex type. 15 | */ 16 | public interface CTGrayscaleTransform extends org.apache.xmlbeans.XmlObject 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(CTGrayscaleTransform.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("ctgrayscaletransform3700type"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/CTGroupFillProperties.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_GroupFillProperties 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTGroupFillProperties 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML CT_GroupFillProperties(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is a complex type. 15 | */ 16 | public interface CTGroupFillProperties extends org.apache.xmlbeans.XmlObject 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(CTGroupFillProperties.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("ctgroupfillpropertiesec66type"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/CTGvmlUseShapeRectangle.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_GvmlUseShapeRectangle 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTGvmlUseShapeRectangle 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML CT_GvmlUseShapeRectangle(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is a complex type. 15 | */ 16 | public interface CTGvmlUseShapeRectangle extends org.apache.xmlbeans.XmlObject 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(CTGvmlUseShapeRectangle.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("ctgvmluseshaperectangle3fb8type"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/CTInverseGammaTransform.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_InverseGammaTransform 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTInverseGammaTransform 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML CT_InverseGammaTransform(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is a complex type. 15 | */ 16 | public interface CTInverseGammaTransform extends org.apache.xmlbeans.XmlObject 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(CTInverseGammaTransform.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("ctinversegammatransform3906type"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/CTInverseTransform.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_InverseTransform 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTInverseTransform 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML CT_InverseTransform(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is a complex type. 15 | */ 16 | public interface CTInverseTransform extends org.apache.xmlbeans.XmlObject 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(CTInverseTransform.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("ctinversetransformfcb7type"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/CTLineJoinBevel.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_LineJoinBevel 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTLineJoinBevel 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML CT_LineJoinBevel(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is a complex type. 15 | */ 16 | public interface CTLineJoinBevel extends org.apache.xmlbeans.XmlObject 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(CTLineJoinBevel.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("ctlinejoinbevel91cdtype"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/CTLineJoinRound.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_LineJoinRound 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTLineJoinRound 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML CT_LineJoinRound(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is a complex type. 15 | */ 16 | public interface CTLineJoinRound extends org.apache.xmlbeans.XmlObject 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(CTLineJoinRound.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("ctlinejoinround7be1type"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/CTNoFillProperties.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_NoFillProperties 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTNoFillProperties 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML CT_NoFillProperties(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is a complex type. 15 | */ 16 | public interface CTNoFillProperties extends org.apache.xmlbeans.XmlObject 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(CTNoFillProperties.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("ctnofillpropertiesbf92type"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/CTPath2DClose.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_Path2DClose 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTPath2DClose 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML CT_Path2DClose(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is a complex type. 15 | */ 16 | public interface CTPath2DClose extends org.apache.xmlbeans.XmlObject 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(CTPath2DClose.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("ctpath2dclose09f2type"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/CTTextBulletColorFollowText.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_TextBulletColorFollowText 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTTextBulletColorFollowText 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML CT_TextBulletColorFollowText(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is a complex type. 15 | */ 16 | public interface CTTextBulletColorFollowText extends org.apache.xmlbeans.XmlObject 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(CTTextBulletColorFollowText.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("cttextbulletcolorfollowtext2ca3type"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/CTTextBulletSizeFollowText.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_TextBulletSizeFollowText 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTTextBulletSizeFollowText 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML CT_TextBulletSizeFollowText(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is a complex type. 15 | */ 16 | public interface CTTextBulletSizeFollowText extends org.apache.xmlbeans.XmlObject 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(CTTextBulletSizeFollowText.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("cttextbulletsizefollowtext11e9type"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/CTTextBulletTypefaceFollowText.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_TextBulletTypefaceFollowText 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTTextBulletTypefaceFollowText 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML CT_TextBulletTypefaceFollowText(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is a complex type. 15 | */ 16 | public interface CTTextBulletTypefaceFollowText extends org.apache.xmlbeans.XmlObject 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(CTTextBulletTypefaceFollowText.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("cttextbullettypefacefollowtextd07ftype"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/CTTextNoAutofit.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_TextNoAutofit 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTTextNoAutofit 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML CT_TextNoAutofit(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is a complex type. 15 | */ 16 | public interface CTTextNoAutofit extends org.apache.xmlbeans.XmlObject 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(CTTextNoAutofit.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("cttextnoautofit1045type"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/CTTextNoBullet.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_TextNoBullet 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTTextNoBullet 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML CT_TextNoBullet(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is a complex type. 15 | */ 16 | public interface CTTextNoBullet extends org.apache.xmlbeans.XmlObject 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(CTTextNoBullet.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("cttextnobulleta08btype"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/CTTextShapeAutofit.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_TextShapeAutofit 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTTextShapeAutofit 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML CT_TextShapeAutofit(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is a complex type. 15 | */ 16 | public interface CTTextShapeAutofit extends org.apache.xmlbeans.XmlObject 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(CTTextShapeAutofit.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("cttextshapeautofita009type"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/CTTextUnderlineFillFollowText.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_TextUnderlineFillFollowText 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTTextUnderlineFillFollowText 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML CT_TextUnderlineFillFollowText(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is a complex type. 15 | */ 16 | public interface CTTextUnderlineFillFollowText extends org.apache.xmlbeans.XmlObject 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(CTTextUnderlineFillFollowText.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("cttextunderlinefillfollowtext8011type"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/CTTextUnderlineLineFollowText.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_TextUnderlineLineFollowText 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTTextUnderlineLineFollowText 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML CT_TextUnderlineLineFollowText(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is a complex type. 15 | */ 16 | public interface CTTextUnderlineLineFollowText extends org.apache.xmlbeans.XmlObject 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(CTTextUnderlineLineFollowText.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("cttextunderlinelinefollowtext3282type"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/STAngle.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_Angle 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STAngle 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML ST_Angle(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STAngle. 15 | */ 16 | public interface STAngle extends org.apache.xmlbeans.XmlInt 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(STAngle.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("stangle8074type"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/STCoordinate.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_Coordinate 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STCoordinate 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML ST_Coordinate(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STCoordinate. 15 | */ 16 | public interface STCoordinate extends org.apache.xmlbeans.XmlLong 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(STCoordinate.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("stcoordinatefae3type"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/STCoordinate32.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_Coordinate32 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STCoordinate32 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML ST_Coordinate32(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STCoordinate32. 15 | */ 16 | public interface STCoordinate32 extends org.apache.xmlbeans.XmlInt 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(STCoordinate32.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("stcoordinate322cc2type"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/STFOVAngle.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_FOVAngle 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STFOVAngle 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML ST_FOVAngle(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STFOVAngle. 15 | */ 16 | public interface STFOVAngle extends org.openxmlformats.schemas.drawingml.x2006.main.STAngle 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(STFOVAngle.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("stfovangle1031type"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/STFixedAngle.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_FixedAngle 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STFixedAngle 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML ST_FixedAngle(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STFixedAngle. 15 | */ 16 | public interface STFixedAngle extends org.openxmlformats.schemas.drawingml.x2006.main.STAngle 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(STFixedAngle.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("stfixedangle53eatype"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/STGeomGuideName.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_GeomGuideName 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STGeomGuideName 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML ST_GeomGuideName(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STGeomGuideName. 15 | */ 16 | public interface STGeomGuideName extends org.apache.xmlbeans.XmlToken 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(STGeomGuideName.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("stgeomguidename366ctype"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/STGuid.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_Guid 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STGuid 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML ST_Guid(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STGuid. 15 | */ 16 | public interface STGuid extends org.apache.xmlbeans.XmlToken 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(STGuid.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("stguidd0f4type"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/STHexBinary3.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_HexBinary3 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STHexBinary3 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML ST_HexBinary3(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STHexBinary3. 15 | */ 16 | public interface STHexBinary3 extends org.apache.xmlbeans.XmlHexBinary 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(STHexBinary3.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("sthexbinary314e2type"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/STLineWidth.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_LineWidth 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STLineWidth 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML ST_LineWidth(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STLineWidth. 15 | */ 16 | public interface STLineWidth extends org.openxmlformats.schemas.drawingml.x2006.main.STCoordinate32 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(STLineWidth.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("stlinewidth8313type"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/STPanose.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_Panose 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STPanose 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML ST_Panose(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STPanose. 15 | */ 16 | public interface STPanose extends org.apache.xmlbeans.XmlHexBinary 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(STPanose.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("stpanose742ftype"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/STPercentage.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_Percentage 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STPercentage 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML ST_Percentage(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STPercentage. 15 | */ 16 | public interface STPercentage extends org.apache.xmlbeans.XmlInt 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(STPercentage.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("stpercentage0a85type"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/STShapeID.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_ShapeID 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STShapeID 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML ST_ShapeID(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STShapeID. 15 | */ 16 | public interface STShapeID extends org.apache.xmlbeans.XmlToken 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(STShapeID.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("stshapeidc49dtype"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/STTextColumnCount.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_TextColumnCount 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STTextColumnCount 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML ST_TextColumnCount(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STTextColumnCount. 15 | */ 16 | public interface STTextColumnCount extends org.apache.xmlbeans.XmlInt 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(STTextColumnCount.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("sttextcolumncount490dtype"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/STTextFontSize.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_TextFontSize 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STTextFontSize 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML ST_TextFontSize(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STTextFontSize. 15 | */ 16 | public interface STTextFontSize extends org.apache.xmlbeans.XmlInt 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(STTextFontSize.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("sttextfontsizeb3a8type"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/STTextIndent.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_TextIndent 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STTextIndent 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML ST_TextIndent(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STTextIndent. 15 | */ 16 | public interface STTextIndent extends org.openxmlformats.schemas.drawingml.x2006.main.STCoordinate32 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(STTextIndent.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("sttextindent16e4type"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/STTextLanguageID.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_TextLanguageID 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STTextLanguageID 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML ST_TextLanguageID(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STTextLanguageID. 15 | */ 16 | public interface STTextLanguageID extends org.apache.xmlbeans.XmlString 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(STTextLanguageID.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("sttextlanguageid806btype"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/STTextMargin.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_TextMargin 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STTextMargin 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML ST_TextMargin(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STTextMargin. 15 | */ 16 | public interface STTextMargin extends org.openxmlformats.schemas.drawingml.x2006.main.STCoordinate32 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(STTextMargin.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("sttextmargin9666type"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/STTextPoint.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_TextPoint 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STTextPoint 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML ST_TextPoint(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STTextPoint. 15 | */ 16 | public interface STTextPoint extends org.apache.xmlbeans.XmlInt 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(STTextPoint.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("sttextpoint4284type"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/STTextTypeface.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_TextTypeface 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STTextTypeface 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML ST_TextTypeface(@http://schemas.openxmlformats.org/drawingml/2006/main). 13 | * 14 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STTextTypeface. 15 | */ 16 | public interface STTextTypeface extends org.apache.xmlbeans.XmlString 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(STTextTypeface.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("sttexttypefacea80ftype"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/CTAlphaCeilingEffectImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_AlphaCeilingEffect 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTAlphaCeilingEffect 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML CT_AlphaCeilingEffect(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is a complex type. 13 | */ 14 | public class CTAlphaCeilingEffectImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.openxmlformats.schemas.drawingml.x2006.main.CTAlphaCeilingEffect 15 | { 16 | 17 | public CTAlphaCeilingEffectImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType); 20 | } 21 | 22 | 23 | } 24 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/CTAlphaFloorEffectImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_AlphaFloorEffect 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTAlphaFloorEffect 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML CT_AlphaFloorEffect(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is a complex type. 13 | */ 14 | public class CTAlphaFloorEffectImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.openxmlformats.schemas.drawingml.x2006.main.CTAlphaFloorEffect 15 | { 16 | 17 | public CTAlphaFloorEffectImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType); 20 | } 21 | 22 | 23 | } 24 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/CTComplementTransformImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_ComplementTransform 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTComplementTransform 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML CT_ComplementTransform(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is a complex type. 13 | */ 14 | public class CTComplementTransformImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.openxmlformats.schemas.drawingml.x2006.main.CTComplementTransform 15 | { 16 | 17 | public CTComplementTransformImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType); 20 | } 21 | 22 | 23 | } 24 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/CTEmptyElementImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_EmptyElement 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTEmptyElement 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML CT_EmptyElement(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is a complex type. 13 | */ 14 | public class CTEmptyElementImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.openxmlformats.schemas.drawingml.x2006.main.CTEmptyElement 15 | { 16 | 17 | public CTEmptyElementImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType); 20 | } 21 | 22 | 23 | } 24 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/CTGammaTransformImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_GammaTransform 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTGammaTransform 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML CT_GammaTransform(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is a complex type. 13 | */ 14 | public class CTGammaTransformImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.openxmlformats.schemas.drawingml.x2006.main.CTGammaTransform 15 | { 16 | 17 | public CTGammaTransformImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType); 20 | } 21 | 22 | 23 | } 24 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/CTGrayscaleEffectImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_GrayscaleEffect 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTGrayscaleEffect 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML CT_GrayscaleEffect(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is a complex type. 13 | */ 14 | public class CTGrayscaleEffectImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.openxmlformats.schemas.drawingml.x2006.main.CTGrayscaleEffect 15 | { 16 | 17 | public CTGrayscaleEffectImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType); 20 | } 21 | 22 | 23 | } 24 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/CTGrayscaleTransformImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_GrayscaleTransform 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTGrayscaleTransform 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML CT_GrayscaleTransform(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is a complex type. 13 | */ 14 | public class CTGrayscaleTransformImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.openxmlformats.schemas.drawingml.x2006.main.CTGrayscaleTransform 15 | { 16 | 17 | public CTGrayscaleTransformImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType); 20 | } 21 | 22 | 23 | } 24 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/CTGroupFillPropertiesImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_GroupFillProperties 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTGroupFillProperties 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML CT_GroupFillProperties(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is a complex type. 13 | */ 14 | public class CTGroupFillPropertiesImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.openxmlformats.schemas.drawingml.x2006.main.CTGroupFillProperties 15 | { 16 | 17 | public CTGroupFillPropertiesImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType); 20 | } 21 | 22 | 23 | } 24 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/CTGvmlUseShapeRectangleImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_GvmlUseShapeRectangle 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTGvmlUseShapeRectangle 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML CT_GvmlUseShapeRectangle(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is a complex type. 13 | */ 14 | public class CTGvmlUseShapeRectangleImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.openxmlformats.schemas.drawingml.x2006.main.CTGvmlUseShapeRectangle 15 | { 16 | 17 | public CTGvmlUseShapeRectangleImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType); 20 | } 21 | 22 | 23 | } 24 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/CTInverseGammaTransformImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_InverseGammaTransform 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTInverseGammaTransform 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML CT_InverseGammaTransform(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is a complex type. 13 | */ 14 | public class CTInverseGammaTransformImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.openxmlformats.schemas.drawingml.x2006.main.CTInverseGammaTransform 15 | { 16 | 17 | public CTInverseGammaTransformImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType); 20 | } 21 | 22 | 23 | } 24 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/CTInverseTransformImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_InverseTransform 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTInverseTransform 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML CT_InverseTransform(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is a complex type. 13 | */ 14 | public class CTInverseTransformImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.openxmlformats.schemas.drawingml.x2006.main.CTInverseTransform 15 | { 16 | 17 | public CTInverseTransformImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType); 20 | } 21 | 22 | 23 | } 24 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/CTLineJoinBevelImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_LineJoinBevel 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTLineJoinBevel 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML CT_LineJoinBevel(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is a complex type. 13 | */ 14 | public class CTLineJoinBevelImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.openxmlformats.schemas.drawingml.x2006.main.CTLineJoinBevel 15 | { 16 | 17 | public CTLineJoinBevelImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType); 20 | } 21 | 22 | 23 | } 24 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/CTLineJoinRoundImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_LineJoinRound 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTLineJoinRound 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML CT_LineJoinRound(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is a complex type. 13 | */ 14 | public class CTLineJoinRoundImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.openxmlformats.schemas.drawingml.x2006.main.CTLineJoinRound 15 | { 16 | 17 | public CTLineJoinRoundImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType); 20 | } 21 | 22 | 23 | } 24 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/CTNoFillPropertiesImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_NoFillProperties 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTNoFillProperties 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML CT_NoFillProperties(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is a complex type. 13 | */ 14 | public class CTNoFillPropertiesImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.openxmlformats.schemas.drawingml.x2006.main.CTNoFillProperties 15 | { 16 | 17 | public CTNoFillPropertiesImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType); 20 | } 21 | 22 | 23 | } 24 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/CTPath2DCloseImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_Path2DClose 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTPath2DClose 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML CT_Path2DClose(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is a complex type. 13 | */ 14 | public class CTPath2DCloseImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.openxmlformats.schemas.drawingml.x2006.main.CTPath2DClose 15 | { 16 | 17 | public CTPath2DCloseImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType); 20 | } 21 | 22 | 23 | } 24 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/CTTextBulletColorFollowTextImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_TextBulletColorFollowText 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTTextBulletColorFollowText 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML CT_TextBulletColorFollowText(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is a complex type. 13 | */ 14 | public class CTTextBulletColorFollowTextImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.openxmlformats.schemas.drawingml.x2006.main.CTTextBulletColorFollowText 15 | { 16 | 17 | public CTTextBulletColorFollowTextImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType); 20 | } 21 | 22 | 23 | } 24 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/CTTextBulletSizeFollowTextImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_TextBulletSizeFollowText 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTTextBulletSizeFollowText 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML CT_TextBulletSizeFollowText(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is a complex type. 13 | */ 14 | public class CTTextBulletSizeFollowTextImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.openxmlformats.schemas.drawingml.x2006.main.CTTextBulletSizeFollowText 15 | { 16 | 17 | public CTTextBulletSizeFollowTextImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType); 20 | } 21 | 22 | 23 | } 24 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/CTTextBulletTypefaceFollowTextImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_TextBulletTypefaceFollowText 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTTextBulletTypefaceFollowText 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML CT_TextBulletTypefaceFollowText(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is a complex type. 13 | */ 14 | public class CTTextBulletTypefaceFollowTextImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.openxmlformats.schemas.drawingml.x2006.main.CTTextBulletTypefaceFollowText 15 | { 16 | 17 | public CTTextBulletTypefaceFollowTextImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType); 20 | } 21 | 22 | 23 | } 24 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/CTTextNoAutofitImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_TextNoAutofit 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTTextNoAutofit 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML CT_TextNoAutofit(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is a complex type. 13 | */ 14 | public class CTTextNoAutofitImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.openxmlformats.schemas.drawingml.x2006.main.CTTextNoAutofit 15 | { 16 | 17 | public CTTextNoAutofitImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType); 20 | } 21 | 22 | 23 | } 24 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/CTTextNoBulletImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_TextNoBullet 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTTextNoBullet 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML CT_TextNoBullet(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is a complex type. 13 | */ 14 | public class CTTextNoBulletImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.openxmlformats.schemas.drawingml.x2006.main.CTTextNoBullet 15 | { 16 | 17 | public CTTextNoBulletImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType); 20 | } 21 | 22 | 23 | } 24 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/CTTextShapeAutofitImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_TextShapeAutofit 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTTextShapeAutofit 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML CT_TextShapeAutofit(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is a complex type. 13 | */ 14 | public class CTTextShapeAutofitImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.openxmlformats.schemas.drawingml.x2006.main.CTTextShapeAutofit 15 | { 16 | 17 | public CTTextShapeAutofitImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType); 20 | } 21 | 22 | 23 | } 24 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/CTTextUnderlineFillFollowTextImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_TextUnderlineFillFollowText 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTTextUnderlineFillFollowText 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML CT_TextUnderlineFillFollowText(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is a complex type. 13 | */ 14 | public class CTTextUnderlineFillFollowTextImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.openxmlformats.schemas.drawingml.x2006.main.CTTextUnderlineFillFollowText 15 | { 16 | 17 | public CTTextUnderlineFillFollowTextImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType); 20 | } 21 | 22 | 23 | } 24 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/CTTextUnderlineLineFollowTextImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_TextUnderlineLineFollowText 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTTextUnderlineLineFollowText 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML CT_TextUnderlineLineFollowText(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is a complex type. 13 | */ 14 | public class CTTextUnderlineLineFollowTextImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.openxmlformats.schemas.drawingml.x2006.main.CTTextUnderlineLineFollowText 15 | { 16 | 17 | public CTTextUnderlineLineFollowTextImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType); 20 | } 21 | 22 | 23 | } 24 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STAngleImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_Angle 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STAngle 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_Angle(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STAngle. 13 | */ 14 | public class STAngleImpl extends org.apache.xmlbeans.impl.values.JavaIntHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STAngle 15 | { 16 | 17 | public STAngleImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STAngleImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STAnimationBuildTypeImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_AnimationBuildType 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STAnimationBuildType 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_AnimationBuildType(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STAnimationBuildType. 13 | */ 14 | public class STAnimationBuildTypeImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STAnimationBuildType 15 | { 16 | 17 | public STAnimationBuildTypeImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STAnimationBuildTypeImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STBevelPresetTypeImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_BevelPresetType 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STBevelPresetType 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_BevelPresetType(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STBevelPresetType. 13 | */ 14 | public class STBevelPresetTypeImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STBevelPresetType 15 | { 16 | 17 | public STBevelPresetTypeImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STBevelPresetTypeImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STBlackWhiteModeImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_BlackWhiteMode 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STBlackWhiteMode 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_BlackWhiteMode(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STBlackWhiteMode. 13 | */ 14 | public class STBlackWhiteModeImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STBlackWhiteMode 15 | { 16 | 17 | public STBlackWhiteModeImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STBlackWhiteModeImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STBlendModeImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_BlendMode 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STBlendMode 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_BlendMode(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STBlendMode. 13 | */ 14 | public class STBlendModeImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STBlendMode 15 | { 16 | 17 | public STBlendModeImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STBlendModeImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STBlipCompressionImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_BlipCompression 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STBlipCompression 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_BlipCompression(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STBlipCompression. 13 | */ 14 | public class STBlipCompressionImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STBlipCompression 15 | { 16 | 17 | public STBlipCompressionImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STBlipCompressionImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STChartBuildStepImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_ChartBuildStep 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STChartBuildStep 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_ChartBuildStep(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STChartBuildStep. 13 | */ 14 | public class STChartBuildStepImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STChartBuildStep 15 | { 16 | 17 | public STChartBuildStepImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STChartBuildStepImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STColorSchemeIndexImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_ColorSchemeIndex 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STColorSchemeIndex 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_ColorSchemeIndex(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STColorSchemeIndex. 13 | */ 14 | public class STColorSchemeIndexImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STColorSchemeIndex 15 | { 16 | 17 | public STColorSchemeIndexImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STColorSchemeIndexImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STCompoundLineImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_CompoundLine 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STCompoundLine 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_CompoundLine(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STCompoundLine. 13 | */ 14 | public class STCompoundLineImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STCompoundLine 15 | { 16 | 17 | public STCompoundLineImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STCompoundLineImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STCoordinate32Impl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_Coordinate32 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STCoordinate32 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_Coordinate32(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STCoordinate32. 13 | */ 14 | public class STCoordinate32Impl extends org.apache.xmlbeans.impl.values.JavaIntHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STCoordinate32 15 | { 16 | 17 | public STCoordinate32Impl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STCoordinate32Impl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STCoordinateImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_Coordinate 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STCoordinate 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_Coordinate(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STCoordinate. 13 | */ 14 | public class STCoordinateImpl extends org.apache.xmlbeans.impl.values.JavaLongHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STCoordinate 15 | { 16 | 17 | public STCoordinateImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STCoordinateImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STDgmBuildStepImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_DgmBuildStep 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STDgmBuildStep 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_DgmBuildStep(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STDgmBuildStep. 13 | */ 14 | public class STDgmBuildStepImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STDgmBuildStep 15 | { 16 | 17 | public STDgmBuildStepImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STDgmBuildStepImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STDrawingElementIdImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_DrawingElementId 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STDrawingElementId 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_DrawingElementId(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STDrawingElementId. 13 | */ 14 | public class STDrawingElementIdImpl extends org.apache.xmlbeans.impl.values.JavaLongHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STDrawingElementId 15 | { 16 | 17 | public STDrawingElementIdImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STDrawingElementIdImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STEffectContainerTypeImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_EffectContainerType 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STEffectContainerType 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_EffectContainerType(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STEffectContainerType. 13 | */ 14 | public class STEffectContainerTypeImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STEffectContainerType 15 | { 16 | 17 | public STEffectContainerTypeImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STEffectContainerTypeImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STFOVAngleImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_FOVAngle 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STFOVAngle 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_FOVAngle(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STFOVAngle. 13 | */ 14 | public class STFOVAngleImpl extends org.apache.xmlbeans.impl.values.JavaIntHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STFOVAngle 15 | { 16 | 17 | public STFOVAngleImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STFOVAngleImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STFixedAngleImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_FixedAngle 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STFixedAngle 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_FixedAngle(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STFixedAngle. 13 | */ 14 | public class STFixedAngleImpl extends org.apache.xmlbeans.impl.values.JavaIntHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STFixedAngle 15 | { 16 | 17 | public STFixedAngleImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STFixedAngleImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STFixedPercentageImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_FixedPercentage 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STFixedPercentage 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_FixedPercentage(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STFixedPercentage. 13 | */ 14 | public class STFixedPercentageImpl extends org.apache.xmlbeans.impl.values.JavaIntHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STFixedPercentage 15 | { 16 | 17 | public STFixedPercentageImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STFixedPercentageImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STFontCollectionIndexImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_FontCollectionIndex 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STFontCollectionIndex 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_FontCollectionIndex(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STFontCollectionIndex. 13 | */ 14 | public class STFontCollectionIndexImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STFontCollectionIndex 15 | { 16 | 17 | public STFontCollectionIndexImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STFontCollectionIndexImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STGeomGuideFormulaImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_GeomGuideFormula 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STGeomGuideFormula 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_GeomGuideFormula(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STGeomGuideFormula. 13 | */ 14 | public class STGeomGuideFormulaImpl extends org.apache.xmlbeans.impl.values.JavaStringHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STGeomGuideFormula 15 | { 16 | 17 | public STGeomGuideFormulaImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STGeomGuideFormulaImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STGeomGuideNameImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_GeomGuideName 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STGeomGuideName 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_GeomGuideName(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STGeomGuideName. 13 | */ 14 | public class STGeomGuideNameImpl extends org.apache.xmlbeans.impl.values.JavaStringHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STGeomGuideName 15 | { 16 | 17 | public STGeomGuideNameImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STGeomGuideNameImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STGuidImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_Guid 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STGuid 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_Guid(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STGuid. 13 | */ 14 | public class STGuidImpl extends org.apache.xmlbeans.impl.values.JavaStringHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STGuid 15 | { 16 | 17 | public STGuidImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STGuidImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STHexBinary3Impl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_HexBinary3 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STHexBinary3 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_HexBinary3(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STHexBinary3. 13 | */ 14 | public class STHexBinary3Impl extends org.apache.xmlbeans.impl.values.JavaHexBinaryHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STHexBinary3 15 | { 16 | 17 | public STHexBinary3Impl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STHexBinary3Impl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STLightRigDirectionImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_LightRigDirection 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STLightRigDirection 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_LightRigDirection(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STLightRigDirection. 13 | */ 14 | public class STLightRigDirectionImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STLightRigDirection 15 | { 16 | 17 | public STLightRigDirectionImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STLightRigDirectionImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STLightRigTypeImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_LightRigType 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STLightRigType 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_LightRigType(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STLightRigType. 13 | */ 14 | public class STLightRigTypeImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STLightRigType 15 | { 16 | 17 | public STLightRigTypeImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STLightRigTypeImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STLineCapImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_LineCap 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STLineCap 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_LineCap(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STLineCap. 13 | */ 14 | public class STLineCapImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STLineCap 15 | { 16 | 17 | public STLineCapImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STLineCapImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STLineEndLengthImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_LineEndLength 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STLineEndLength 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_LineEndLength(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STLineEndLength. 13 | */ 14 | public class STLineEndLengthImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STLineEndLength 15 | { 16 | 17 | public STLineEndLengthImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STLineEndLengthImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STLineEndTypeImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_LineEndType 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STLineEndType 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_LineEndType(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STLineEndType. 13 | */ 14 | public class STLineEndTypeImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STLineEndType 15 | { 16 | 17 | public STLineEndTypeImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STLineEndTypeImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STLineEndWidthImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_LineEndWidth 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STLineEndWidth 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_LineEndWidth(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STLineEndWidth. 13 | */ 14 | public class STLineEndWidthImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STLineEndWidth 15 | { 16 | 17 | public STLineEndWidthImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STLineEndWidthImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STLineWidthImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_LineWidth 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STLineWidth 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_LineWidth(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STLineWidth. 13 | */ 14 | public class STLineWidthImpl extends org.apache.xmlbeans.impl.values.JavaIntHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STLineWidth 15 | { 16 | 17 | public STLineWidthImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STLineWidthImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STOnOffStyleTypeImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_OnOffStyleType 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STOnOffStyleType 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_OnOffStyleType(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STOnOffStyleType. 13 | */ 14 | public class STOnOffStyleTypeImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STOnOffStyleType 15 | { 16 | 17 | public STOnOffStyleTypeImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STOnOffStyleTypeImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STPanoseImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_Panose 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STPanose 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_Panose(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STPanose. 13 | */ 14 | public class STPanoseImpl extends org.apache.xmlbeans.impl.values.JavaHexBinaryHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STPanose 15 | { 16 | 17 | public STPanoseImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STPanoseImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STPathFillModeImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_PathFillMode 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STPathFillMode 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_PathFillMode(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STPathFillMode. 13 | */ 14 | public class STPathFillModeImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STPathFillMode 15 | { 16 | 17 | public STPathFillModeImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STPathFillModeImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STPathShadeTypeImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_PathShadeType 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STPathShadeType 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_PathShadeType(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STPathShadeType. 13 | */ 14 | public class STPathShadeTypeImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STPathShadeType 15 | { 16 | 17 | public STPathShadeTypeImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STPathShadeTypeImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STPenAlignmentImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_PenAlignment 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STPenAlignment 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_PenAlignment(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STPenAlignment. 13 | */ 14 | public class STPenAlignmentImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STPenAlignment 15 | { 16 | 17 | public STPenAlignmentImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STPenAlignmentImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STPercentageImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_Percentage 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STPercentage 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_Percentage(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STPercentage. 13 | */ 14 | public class STPercentageImpl extends org.apache.xmlbeans.impl.values.JavaIntHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STPercentage 15 | { 16 | 17 | public STPercentageImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STPercentageImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STPositiveCoordinate32Impl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_PositiveCoordinate32 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STPositiveCoordinate32 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_PositiveCoordinate32(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STPositiveCoordinate32. 13 | */ 14 | public class STPositiveCoordinate32Impl extends org.apache.xmlbeans.impl.values.JavaIntHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STPositiveCoordinate32 15 | { 16 | 17 | public STPositiveCoordinate32Impl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STPositiveCoordinate32Impl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STPositiveCoordinateImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_PositiveCoordinate 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STPositiveCoordinate 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_PositiveCoordinate(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STPositiveCoordinate. 13 | */ 14 | public class STPositiveCoordinateImpl extends org.apache.xmlbeans.impl.values.JavaLongHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STPositiveCoordinate 15 | { 16 | 17 | public STPositiveCoordinateImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STPositiveCoordinateImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STPositiveFixedAngleImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_PositiveFixedAngle 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STPositiveFixedAngle 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_PositiveFixedAngle(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STPositiveFixedAngle. 13 | */ 14 | public class STPositiveFixedAngleImpl extends org.apache.xmlbeans.impl.values.JavaIntHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STPositiveFixedAngle 15 | { 16 | 17 | public STPositiveFixedAngleImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STPositiveFixedAngleImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STPositiveFixedPercentageImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_PositiveFixedPercentage 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STPositiveFixedPercentage 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_PositiveFixedPercentage(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STPositiveFixedPercentage. 13 | */ 14 | public class STPositiveFixedPercentageImpl extends org.apache.xmlbeans.impl.values.JavaIntHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STPositiveFixedPercentage 15 | { 16 | 17 | public STPositiveFixedPercentageImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STPositiveFixedPercentageImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STPositivePercentageImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_PositivePercentage 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STPositivePercentage 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_PositivePercentage(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STPositivePercentage. 13 | */ 14 | public class STPositivePercentageImpl extends org.apache.xmlbeans.impl.values.JavaIntHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STPositivePercentage 15 | { 16 | 17 | public STPositivePercentageImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STPositivePercentageImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STPresetCameraTypeImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_PresetCameraType 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STPresetCameraType 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_PresetCameraType(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STPresetCameraType. 13 | */ 14 | public class STPresetCameraTypeImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STPresetCameraType 15 | { 16 | 17 | public STPresetCameraTypeImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STPresetCameraTypeImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STPresetColorValImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_PresetColorVal 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STPresetColorVal 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_PresetColorVal(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STPresetColorVal. 13 | */ 14 | public class STPresetColorValImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STPresetColorVal 15 | { 16 | 17 | public STPresetColorValImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STPresetColorValImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STPresetLineDashValImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_PresetLineDashVal 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STPresetLineDashVal 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_PresetLineDashVal(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STPresetLineDashVal. 13 | */ 14 | public class STPresetLineDashValImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STPresetLineDashVal 15 | { 16 | 17 | public STPresetLineDashValImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STPresetLineDashValImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STPresetMaterialTypeImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_PresetMaterialType 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STPresetMaterialType 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_PresetMaterialType(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STPresetMaterialType. 13 | */ 14 | public class STPresetMaterialTypeImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STPresetMaterialType 15 | { 16 | 17 | public STPresetMaterialTypeImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STPresetMaterialTypeImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STPresetPatternValImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_PresetPatternVal 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STPresetPatternVal 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_PresetPatternVal(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STPresetPatternVal. 13 | */ 14 | public class STPresetPatternValImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STPresetPatternVal 15 | { 16 | 17 | public STPresetPatternValImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STPresetPatternValImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STPresetShadowValImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_PresetShadowVal 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STPresetShadowVal 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_PresetShadowVal(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STPresetShadowVal. 13 | */ 14 | public class STPresetShadowValImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STPresetShadowVal 15 | { 16 | 17 | public STPresetShadowValImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STPresetShadowValImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STRectAlignmentImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_RectAlignment 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STRectAlignment 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_RectAlignment(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STRectAlignment. 13 | */ 14 | public class STRectAlignmentImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STRectAlignment 15 | { 16 | 17 | public STRectAlignmentImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STRectAlignmentImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STSchemeColorValImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_SchemeColorVal 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STSchemeColorVal 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_SchemeColorVal(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STSchemeColorVal. 13 | */ 14 | public class STSchemeColorValImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STSchemeColorVal 15 | { 16 | 17 | public STSchemeColorValImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STSchemeColorValImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STShapeIDImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_ShapeID 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STShapeID 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_ShapeID(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STShapeID. 13 | */ 14 | public class STShapeIDImpl extends org.apache.xmlbeans.impl.values.JavaStringHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STShapeID 15 | { 16 | 17 | public STShapeIDImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STShapeIDImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STShapeTypeImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_ShapeType 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STShapeType 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_ShapeType(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STShapeType. 13 | */ 14 | public class STShapeTypeImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STShapeType 15 | { 16 | 17 | public STShapeTypeImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STShapeTypeImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STStyleMatrixColumnIndexImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_StyleMatrixColumnIndex 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STStyleMatrixColumnIndex 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_StyleMatrixColumnIndex(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STStyleMatrixColumnIndex. 13 | */ 14 | public class STStyleMatrixColumnIndexImpl extends org.apache.xmlbeans.impl.values.JavaLongHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STStyleMatrixColumnIndex 15 | { 16 | 17 | public STStyleMatrixColumnIndexImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STStyleMatrixColumnIndexImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STSystemColorValImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_SystemColorVal 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STSystemColorVal 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_SystemColorVal(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STSystemColorVal. 13 | */ 14 | public class STSystemColorValImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STSystemColorVal 15 | { 16 | 17 | public STSystemColorValImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STSystemColorValImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STTextAlignTypeImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_TextAlignType 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STTextAlignType 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_TextAlignType(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STTextAlignType. 13 | */ 14 | public class STTextAlignTypeImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STTextAlignType 15 | { 16 | 17 | public STTextAlignTypeImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STTextAlignTypeImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STTextAnchoringTypeImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_TextAnchoringType 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STTextAnchoringType 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_TextAnchoringType(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STTextAnchoringType. 13 | */ 14 | public class STTextAnchoringTypeImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STTextAnchoringType 15 | { 16 | 17 | public STTextAnchoringTypeImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STTextAnchoringTypeImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STTextAutonumberSchemeImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_TextAutonumberScheme 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STTextAutonumberScheme 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_TextAutonumberScheme(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STTextAutonumberScheme. 13 | */ 14 | public class STTextAutonumberSchemeImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STTextAutonumberScheme 15 | { 16 | 17 | public STTextAutonumberSchemeImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STTextAutonumberSchemeImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STTextBulletSizePercentImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_TextBulletSizePercent 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STTextBulletSizePercent 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_TextBulletSizePercent(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STTextBulletSizePercent. 13 | */ 14 | public class STTextBulletSizePercentImpl extends org.apache.xmlbeans.impl.values.JavaIntHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STTextBulletSizePercent 15 | { 16 | 17 | public STTextBulletSizePercentImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STTextBulletSizePercentImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STTextBulletStartAtNumImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_TextBulletStartAtNum 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STTextBulletStartAtNum 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_TextBulletStartAtNum(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STTextBulletStartAtNum. 13 | */ 14 | public class STTextBulletStartAtNumImpl extends org.apache.xmlbeans.impl.values.JavaIntHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STTextBulletStartAtNum 15 | { 16 | 17 | public STTextBulletStartAtNumImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STTextBulletStartAtNumImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STTextCapsTypeImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_TextCapsType 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STTextCapsType 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_TextCapsType(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STTextCapsType. 13 | */ 14 | public class STTextCapsTypeImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STTextCapsType 15 | { 16 | 17 | public STTextCapsTypeImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STTextCapsTypeImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STTextColumnCountImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_TextColumnCount 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STTextColumnCount 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_TextColumnCount(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STTextColumnCount. 13 | */ 14 | public class STTextColumnCountImpl extends org.apache.xmlbeans.impl.values.JavaIntHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STTextColumnCount 15 | { 16 | 17 | public STTextColumnCountImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STTextColumnCountImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STTextFontAlignTypeImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_TextFontAlignType 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STTextFontAlignType 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_TextFontAlignType(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STTextFontAlignType. 13 | */ 14 | public class STTextFontAlignTypeImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STTextFontAlignType 15 | { 16 | 17 | public STTextFontAlignTypeImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STTextFontAlignTypeImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STTextFontScalePercentImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_TextFontScalePercent 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STTextFontScalePercent 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_TextFontScalePercent(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STTextFontScalePercent. 13 | */ 14 | public class STTextFontScalePercentImpl extends org.apache.xmlbeans.impl.values.JavaIntHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STTextFontScalePercent 15 | { 16 | 17 | public STTextFontScalePercentImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STTextFontScalePercentImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STTextFontSizeImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_TextFontSize 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STTextFontSize 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_TextFontSize(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STTextFontSize. 13 | */ 14 | public class STTextFontSizeImpl extends org.apache.xmlbeans.impl.values.JavaIntHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STTextFontSize 15 | { 16 | 17 | public STTextFontSizeImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STTextFontSizeImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STTextHorzOverflowTypeImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_TextHorzOverflowType 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STTextHorzOverflowType 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_TextHorzOverflowType(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STTextHorzOverflowType. 13 | */ 14 | public class STTextHorzOverflowTypeImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STTextHorzOverflowType 15 | { 16 | 17 | public STTextHorzOverflowTypeImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STTextHorzOverflowTypeImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STTextIndentImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_TextIndent 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STTextIndent 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_TextIndent(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STTextIndent. 13 | */ 14 | public class STTextIndentImpl extends org.apache.xmlbeans.impl.values.JavaIntHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STTextIndent 15 | { 16 | 17 | public STTextIndentImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STTextIndentImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STTextIndentLevelTypeImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_TextIndentLevelType 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STTextIndentLevelType 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_TextIndentLevelType(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STTextIndentLevelType. 13 | */ 14 | public class STTextIndentLevelTypeImpl extends org.apache.xmlbeans.impl.values.JavaIntHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STTextIndentLevelType 15 | { 16 | 17 | public STTextIndentLevelTypeImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STTextIndentLevelTypeImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STTextLanguageIDImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_TextLanguageID 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STTextLanguageID 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_TextLanguageID(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STTextLanguageID. 13 | */ 14 | public class STTextLanguageIDImpl extends org.apache.xmlbeans.impl.values.JavaStringHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STTextLanguageID 15 | { 16 | 17 | public STTextLanguageIDImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STTextLanguageIDImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STTextMarginImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_TextMargin 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STTextMargin 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_TextMargin(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STTextMargin. 13 | */ 14 | public class STTextMarginImpl extends org.apache.xmlbeans.impl.values.JavaIntHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STTextMargin 15 | { 16 | 17 | public STTextMarginImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STTextMarginImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STTextNonNegativePointImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_TextNonNegativePoint 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STTextNonNegativePoint 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_TextNonNegativePoint(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STTextNonNegativePoint. 13 | */ 14 | public class STTextNonNegativePointImpl extends org.apache.xmlbeans.impl.values.JavaIntHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STTextNonNegativePoint 15 | { 16 | 17 | public STTextNonNegativePointImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STTextNonNegativePointImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STTextPointImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_TextPoint 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STTextPoint 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_TextPoint(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STTextPoint. 13 | */ 14 | public class STTextPointImpl extends org.apache.xmlbeans.impl.values.JavaIntHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STTextPoint 15 | { 16 | 17 | public STTextPointImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STTextPointImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STTextShapeTypeImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_TextShapeType 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STTextShapeType 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_TextShapeType(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STTextShapeType. 13 | */ 14 | public class STTextShapeTypeImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STTextShapeType 15 | { 16 | 17 | public STTextShapeTypeImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STTextShapeTypeImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STTextSpacingPercentImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_TextSpacingPercent 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STTextSpacingPercent 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_TextSpacingPercent(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STTextSpacingPercent. 13 | */ 14 | public class STTextSpacingPercentImpl extends org.apache.xmlbeans.impl.values.JavaIntHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STTextSpacingPercent 15 | { 16 | 17 | public STTextSpacingPercentImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STTextSpacingPercentImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STTextSpacingPointImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_TextSpacingPoint 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STTextSpacingPoint 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_TextSpacingPoint(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STTextSpacingPoint. 13 | */ 14 | public class STTextSpacingPointImpl extends org.apache.xmlbeans.impl.values.JavaIntHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STTextSpacingPoint 15 | { 16 | 17 | public STTextSpacingPointImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STTextSpacingPointImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STTextStrikeTypeImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_TextStrikeType 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STTextStrikeType 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_TextStrikeType(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STTextStrikeType. 13 | */ 14 | public class STTextStrikeTypeImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STTextStrikeType 15 | { 16 | 17 | public STTextStrikeTypeImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STTextStrikeTypeImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STTextTabAlignTypeImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_TextTabAlignType 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STTextTabAlignType 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_TextTabAlignType(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STTextTabAlignType. 13 | */ 14 | public class STTextTabAlignTypeImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STTextTabAlignType 15 | { 16 | 17 | public STTextTabAlignTypeImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STTextTabAlignTypeImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STTextTypefaceImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_TextTypeface 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STTextTypeface 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_TextTypeface(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STTextTypeface. 13 | */ 14 | public class STTextTypefaceImpl extends org.apache.xmlbeans.impl.values.JavaStringHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STTextTypeface 15 | { 16 | 17 | public STTextTypefaceImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STTextTypefaceImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STTextUnderlineTypeImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_TextUnderlineType 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STTextUnderlineType 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_TextUnderlineType(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STTextUnderlineType. 13 | */ 14 | public class STTextUnderlineTypeImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STTextUnderlineType 15 | { 16 | 17 | public STTextUnderlineTypeImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STTextUnderlineTypeImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STTextVertOverflowTypeImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_TextVertOverflowType 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STTextVertOverflowType 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_TextVertOverflowType(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STTextVertOverflowType. 13 | */ 14 | public class STTextVertOverflowTypeImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STTextVertOverflowType 15 | { 16 | 17 | public STTextVertOverflowTypeImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STTextVertOverflowTypeImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STTextVerticalTypeImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_TextVerticalType 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STTextVerticalType 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_TextVerticalType(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STTextVerticalType. 13 | */ 14 | public class STTextVerticalTypeImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STTextVerticalType 15 | { 16 | 17 | public STTextVerticalTypeImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STTextVerticalTypeImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STTextWrappingTypeImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_TextWrappingType 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STTextWrappingType 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_TextWrappingType(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STTextWrappingType. 13 | */ 14 | public class STTextWrappingTypeImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STTextWrappingType 15 | { 16 | 17 | public STTextWrappingTypeImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STTextWrappingTypeImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/drawingml/x2006/main/impl/STTileFlipModeImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_TileFlipMode 3 | * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main 4 | * Java type: org.openxmlformats.schemas.drawingml.x2006.main.STTileFlipMode 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.drawingml.x2006.main.impl; 9 | /** 10 | * An XML ST_TileFlipMode(@http://schemas.openxmlformats.org/drawingml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.drawingml.x2006.main.STTileFlipMode. 13 | */ 14 | public class STTileFlipModeImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.drawingml.x2006.main.STTileFlipMode 15 | { 16 | 17 | public STTileFlipModeImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STTileFlipModeImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/presentationml/x2006/main/CTEmpty.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_Empty 3 | * Namespace: http://schemas.openxmlformats.org/presentationml/2006/main 4 | * Java type: org.openxmlformats.schemas.presentationml.x2006.main.CTEmpty 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.presentationml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML CT_Empty(@http://schemas.openxmlformats.org/presentationml/2006/main). 13 | * 14 | * This is a complex type. 15 | */ 16 | public interface CTEmpty extends org.apache.xmlbeans.XmlObject 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(CTEmpty.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("ctempty1ea2type"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/presentationml/x2006/main/STIndex.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_Index 3 | * Namespace: http://schemas.openxmlformats.org/presentationml/2006/main 4 | * Java type: org.openxmlformats.schemas.presentationml.x2006.main.STIndex 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.presentationml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML ST_Index(@http://schemas.openxmlformats.org/presentationml/2006/main). 13 | * 14 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.presentationml.x2006.main.STIndex. 15 | */ 16 | public interface STIndex extends org.apache.xmlbeans.XmlUnsignedInt 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(STIndex.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("stindex000dtype"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/presentationml/x2006/main/STName.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_Name 3 | * Namespace: http://schemas.openxmlformats.org/presentationml/2006/main 4 | * Java type: org.openxmlformats.schemas.presentationml.x2006.main.STName 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.presentationml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML ST_Name(@http://schemas.openxmlformats.org/presentationml/2006/main). 13 | * 14 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.presentationml.x2006.main.STName. 15 | */ 16 | public interface STName extends org.apache.xmlbeans.XmlString 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(STName.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("stnameadaatype"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/presentationml/x2006/main/STSlideId.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_SlideId 3 | * Namespace: http://schemas.openxmlformats.org/presentationml/2006/main 4 | * Java type: org.openxmlformats.schemas.presentationml.x2006.main.STSlideId 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.presentationml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML ST_SlideId(@http://schemas.openxmlformats.org/presentationml/2006/main). 13 | * 14 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.presentationml.x2006.main.STSlideId. 15 | */ 16 | public interface STSlideId extends org.apache.xmlbeans.XmlUnsignedInt 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(STSlideId.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("stslideida0b3type"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/presentationml/x2006/main/STWebEncoding.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_WebEncoding 3 | * Namespace: http://schemas.openxmlformats.org/presentationml/2006/main 4 | * Java type: org.openxmlformats.schemas.presentationml.x2006.main.STWebEncoding 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.presentationml.x2006.main; 9 | 10 | 11 | /** 12 | * An XML ST_WebEncoding(@http://schemas.openxmlformats.org/presentationml/2006/main). 13 | * 14 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.presentationml.x2006.main.STWebEncoding. 15 | */ 16 | public interface STWebEncoding extends org.apache.xmlbeans.XmlString 17 | { 18 | public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) 19 | org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(STWebEncoding.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("stwebencodinga738type"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/presentationml/x2006/main/impl/CTEmptyImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: CT_Empty 3 | * Namespace: http://schemas.openxmlformats.org/presentationml/2006/main 4 | * Java type: org.openxmlformats.schemas.presentationml.x2006.main.CTEmpty 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.presentationml.x2006.main.impl; 9 | /** 10 | * An XML CT_Empty(@http://schemas.openxmlformats.org/presentationml/2006/main). 11 | * 12 | * This is a complex type. 13 | */ 14 | public class CTEmptyImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.openxmlformats.schemas.presentationml.x2006.main.CTEmpty 15 | { 16 | 17 | public CTEmptyImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType); 20 | } 21 | 22 | 23 | } 24 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/presentationml/x2006/main/impl/STAlgClassImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_AlgClass 3 | * Namespace: http://schemas.openxmlformats.org/presentationml/2006/main 4 | * Java type: org.openxmlformats.schemas.presentationml.x2006.main.STAlgClass 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.presentationml.x2006.main.impl; 9 | /** 10 | * An XML ST_AlgClass(@http://schemas.openxmlformats.org/presentationml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.presentationml.x2006.main.STAlgClass. 13 | */ 14 | public class STAlgClassImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.presentationml.x2006.main.STAlgClass 15 | { 16 | 17 | public STAlgClassImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STAlgClassImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/presentationml/x2006/main/impl/STAlgTypeImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_AlgType 3 | * Namespace: http://schemas.openxmlformats.org/presentationml/2006/main 4 | * Java type: org.openxmlformats.schemas.presentationml.x2006.main.STAlgType 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.presentationml.x2006.main.impl; 9 | /** 10 | * An XML ST_AlgType(@http://schemas.openxmlformats.org/presentationml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.presentationml.x2006.main.STAlgType. 13 | */ 14 | public class STAlgTypeImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.presentationml.x2006.main.STAlgType 15 | { 16 | 17 | public STAlgTypeImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STAlgTypeImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/presentationml/x2006/main/impl/STBookmarkIdSeedImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_BookmarkIdSeed 3 | * Namespace: http://schemas.openxmlformats.org/presentationml/2006/main 4 | * Java type: org.openxmlformats.schemas.presentationml.x2006.main.STBookmarkIdSeed 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.presentationml.x2006.main.impl; 9 | /** 10 | * An XML ST_BookmarkIdSeed(@http://schemas.openxmlformats.org/presentationml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.presentationml.x2006.main.STBookmarkIdSeed. 13 | */ 14 | public class STBookmarkIdSeedImpl extends org.apache.xmlbeans.impl.values.JavaLongHolderEx implements org.openxmlformats.schemas.presentationml.x2006.main.STBookmarkIdSeed 15 | { 16 | 17 | public STBookmarkIdSeedImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STBookmarkIdSeedImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/presentationml/x2006/main/impl/STCryptProvImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_CryptProv 3 | * Namespace: http://schemas.openxmlformats.org/presentationml/2006/main 4 | * Java type: org.openxmlformats.schemas.presentationml.x2006.main.STCryptProv 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.presentationml.x2006.main.impl; 9 | /** 10 | * An XML ST_CryptProv(@http://schemas.openxmlformats.org/presentationml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.presentationml.x2006.main.STCryptProv. 13 | */ 14 | public class STCryptProvImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.presentationml.x2006.main.STCryptProv 15 | { 16 | 17 | public STCryptProvImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STCryptProvImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/presentationml/x2006/main/impl/STDirectionImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_Direction 3 | * Namespace: http://schemas.openxmlformats.org/presentationml/2006/main 4 | * Java type: org.openxmlformats.schemas.presentationml.x2006.main.STDirection 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.presentationml.x2006.main.impl; 9 | /** 10 | * An XML ST_Direction(@http://schemas.openxmlformats.org/presentationml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.presentationml.x2006.main.STDirection. 13 | */ 14 | public class STDirectionImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.presentationml.x2006.main.STDirection 15 | { 16 | 17 | public STDirectionImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STDirectionImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/presentationml/x2006/main/impl/STIndexImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_Index 3 | * Namespace: http://schemas.openxmlformats.org/presentationml/2006/main 4 | * Java type: org.openxmlformats.schemas.presentationml.x2006.main.STIndex 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.presentationml.x2006.main.impl; 9 | /** 10 | * An XML ST_Index(@http://schemas.openxmlformats.org/presentationml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.presentationml.x2006.main.STIndex. 13 | */ 14 | public class STIndexImpl extends org.apache.xmlbeans.impl.values.JavaLongHolderEx implements org.openxmlformats.schemas.presentationml.x2006.main.STIndex 15 | { 16 | 17 | public STIndexImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STIndexImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/presentationml/x2006/main/impl/STIterateTypeImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_IterateType 3 | * Namespace: http://schemas.openxmlformats.org/presentationml/2006/main 4 | * Java type: org.openxmlformats.schemas.presentationml.x2006.main.STIterateType 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.presentationml.x2006.main.impl; 9 | /** 10 | * An XML ST_IterateType(@http://schemas.openxmlformats.org/presentationml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.presentationml.x2006.main.STIterateType. 13 | */ 14 | public class STIterateTypeImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.presentationml.x2006.main.STIterateType 15 | { 16 | 17 | public STIterateTypeImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STIterateTypeImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/presentationml/x2006/main/impl/STNameImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_Name 3 | * Namespace: http://schemas.openxmlformats.org/presentationml/2006/main 4 | * Java type: org.openxmlformats.schemas.presentationml.x2006.main.STName 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.presentationml.x2006.main.impl; 9 | /** 10 | * An XML ST_Name(@http://schemas.openxmlformats.org/presentationml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.presentationml.x2006.main.STName. 13 | */ 14 | public class STNameImpl extends org.apache.xmlbeans.impl.values.JavaStringHolderEx implements org.openxmlformats.schemas.presentationml.x2006.main.STName 15 | { 16 | 17 | public STNameImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STNameImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/presentationml/x2006/main/impl/STPhotoAlbumLayoutImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_PhotoAlbumLayout 3 | * Namespace: http://schemas.openxmlformats.org/presentationml/2006/main 4 | * Java type: org.openxmlformats.schemas.presentationml.x2006.main.STPhotoAlbumLayout 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.presentationml.x2006.main.impl; 9 | /** 10 | * An XML ST_PhotoAlbumLayout(@http://schemas.openxmlformats.org/presentationml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.presentationml.x2006.main.STPhotoAlbumLayout. 13 | */ 14 | public class STPhotoAlbumLayoutImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.presentationml.x2006.main.STPhotoAlbumLayout 15 | { 16 | 17 | public STPhotoAlbumLayoutImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STPhotoAlbumLayoutImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/presentationml/x2006/main/impl/STPlaceholderSizeImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_PlaceholderSize 3 | * Namespace: http://schemas.openxmlformats.org/presentationml/2006/main 4 | * Java type: org.openxmlformats.schemas.presentationml.x2006.main.STPlaceholderSize 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.presentationml.x2006.main.impl; 9 | /** 10 | * An XML ST_PlaceholderSize(@http://schemas.openxmlformats.org/presentationml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.presentationml.x2006.main.STPlaceholderSize. 13 | */ 14 | public class STPlaceholderSizeImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.presentationml.x2006.main.STPlaceholderSize 15 | { 16 | 17 | public STPlaceholderSizeImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STPlaceholderSizeImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/presentationml/x2006/main/impl/STPlaceholderTypeImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_PlaceholderType 3 | * Namespace: http://schemas.openxmlformats.org/presentationml/2006/main 4 | * Java type: org.openxmlformats.schemas.presentationml.x2006.main.STPlaceholderType 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.presentationml.x2006.main.impl; 9 | /** 10 | * An XML ST_PlaceholderType(@http://schemas.openxmlformats.org/presentationml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.presentationml.x2006.main.STPlaceholderType. 13 | */ 14 | public class STPlaceholderTypeImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.presentationml.x2006.main.STPlaceholderType 15 | { 16 | 17 | public STPlaceholderTypeImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STPlaceholderTypeImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/presentationml/x2006/main/impl/STPrintColorModeImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_PrintColorMode 3 | * Namespace: http://schemas.openxmlformats.org/presentationml/2006/main 4 | * Java type: org.openxmlformats.schemas.presentationml.x2006.main.STPrintColorMode 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.presentationml.x2006.main.impl; 9 | /** 10 | * An XML ST_PrintColorMode(@http://schemas.openxmlformats.org/presentationml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.presentationml.x2006.main.STPrintColorMode. 13 | */ 14 | public class STPrintColorModeImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.presentationml.x2006.main.STPrintColorMode 15 | { 16 | 17 | public STPrintColorModeImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STPrintColorModeImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/presentationml/x2006/main/impl/STPrintWhatImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_PrintWhat 3 | * Namespace: http://schemas.openxmlformats.org/presentationml/2006/main 4 | * Java type: org.openxmlformats.schemas.presentationml.x2006.main.STPrintWhat 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.presentationml.x2006.main.impl; 9 | /** 10 | * An XML ST_PrintWhat(@http://schemas.openxmlformats.org/presentationml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.presentationml.x2006.main.STPrintWhat. 13 | */ 14 | public class STPrintWhatImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.presentationml.x2006.main.STPrintWhat 15 | { 16 | 17 | public STPrintWhatImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STPrintWhatImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/presentationml/x2006/main/impl/STSlideIdImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_SlideId 3 | * Namespace: http://schemas.openxmlformats.org/presentationml/2006/main 4 | * Java type: org.openxmlformats.schemas.presentationml.x2006.main.STSlideId 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.presentationml.x2006.main.impl; 9 | /** 10 | * An XML ST_SlideId(@http://schemas.openxmlformats.org/presentationml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.presentationml.x2006.main.STSlideId. 13 | */ 14 | public class STSlideIdImpl extends org.apache.xmlbeans.impl.values.JavaLongHolderEx implements org.openxmlformats.schemas.presentationml.x2006.main.STSlideId 15 | { 16 | 17 | public STSlideIdImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STSlideIdImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/presentationml/x2006/main/impl/STSlideLayoutIdImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_SlideLayoutId 3 | * Namespace: http://schemas.openxmlformats.org/presentationml/2006/main 4 | * Java type: org.openxmlformats.schemas.presentationml.x2006.main.STSlideLayoutId 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.presentationml.x2006.main.impl; 9 | /** 10 | * An XML ST_SlideLayoutId(@http://schemas.openxmlformats.org/presentationml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.presentationml.x2006.main.STSlideLayoutId. 13 | */ 14 | public class STSlideLayoutIdImpl extends org.apache.xmlbeans.impl.values.JavaLongHolderEx implements org.openxmlformats.schemas.presentationml.x2006.main.STSlideLayoutId 15 | { 16 | 17 | public STSlideLayoutIdImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STSlideLayoutIdImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/presentationml/x2006/main/impl/STSlideLayoutTypeImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_SlideLayoutType 3 | * Namespace: http://schemas.openxmlformats.org/presentationml/2006/main 4 | * Java type: org.openxmlformats.schemas.presentationml.x2006.main.STSlideLayoutType 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.presentationml.x2006.main.impl; 9 | /** 10 | * An XML ST_SlideLayoutType(@http://schemas.openxmlformats.org/presentationml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.presentationml.x2006.main.STSlideLayoutType. 13 | */ 14 | public class STSlideLayoutTypeImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.presentationml.x2006.main.STSlideLayoutType 15 | { 16 | 17 | public STSlideLayoutTypeImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STSlideLayoutTypeImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/presentationml/x2006/main/impl/STSlideMasterIdImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_SlideMasterId 3 | * Namespace: http://schemas.openxmlformats.org/presentationml/2006/main 4 | * Java type: org.openxmlformats.schemas.presentationml.x2006.main.STSlideMasterId 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.presentationml.x2006.main.impl; 9 | /** 10 | * An XML ST_SlideMasterId(@http://schemas.openxmlformats.org/presentationml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.presentationml.x2006.main.STSlideMasterId. 13 | */ 14 | public class STSlideMasterIdImpl extends org.apache.xmlbeans.impl.values.JavaLongHolderEx implements org.openxmlformats.schemas.presentationml.x2006.main.STSlideMasterId 15 | { 16 | 17 | public STSlideMasterIdImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STSlideMasterIdImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/presentationml/x2006/main/impl/STSlideSizeCoordinateImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_SlideSizeCoordinate 3 | * Namespace: http://schemas.openxmlformats.org/presentationml/2006/main 4 | * Java type: org.openxmlformats.schemas.presentationml.x2006.main.STSlideSizeCoordinate 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.presentationml.x2006.main.impl; 9 | /** 10 | * An XML ST_SlideSizeCoordinate(@http://schemas.openxmlformats.org/presentationml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.presentationml.x2006.main.STSlideSizeCoordinate. 13 | */ 14 | public class STSlideSizeCoordinateImpl extends org.apache.xmlbeans.impl.values.JavaIntHolderEx implements org.openxmlformats.schemas.presentationml.x2006.main.STSlideSizeCoordinate 15 | { 16 | 17 | public STSlideSizeCoordinateImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STSlideSizeCoordinateImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/presentationml/x2006/main/impl/STSlideSizeTypeImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_SlideSizeType 3 | * Namespace: http://schemas.openxmlformats.org/presentationml/2006/main 4 | * Java type: org.openxmlformats.schemas.presentationml.x2006.main.STSlideSizeType 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.presentationml.x2006.main.impl; 9 | /** 10 | * An XML ST_SlideSizeType(@http://schemas.openxmlformats.org/presentationml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.presentationml.x2006.main.STSlideSizeType. 13 | */ 14 | public class STSlideSizeTypeImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.presentationml.x2006.main.STSlideSizeType 15 | { 16 | 17 | public STSlideSizeTypeImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STSlideSizeTypeImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/presentationml/x2006/main/impl/STSplitterBarStateImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_SplitterBarState 3 | * Namespace: http://schemas.openxmlformats.org/presentationml/2006/main 4 | * Java type: org.openxmlformats.schemas.presentationml.x2006.main.STSplitterBarState 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.presentationml.x2006.main.impl; 9 | /** 10 | * An XML ST_SplitterBarState(@http://schemas.openxmlformats.org/presentationml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.presentationml.x2006.main.STSplitterBarState. 13 | */ 14 | public class STSplitterBarStateImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.presentationml.x2006.main.STSplitterBarState 15 | { 16 | 17 | public STSplitterBarStateImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STSplitterBarStateImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/presentationml/x2006/main/impl/STTransitionSpeedImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_TransitionSpeed 3 | * Namespace: http://schemas.openxmlformats.org/presentationml/2006/main 4 | * Java type: org.openxmlformats.schemas.presentationml.x2006.main.STTransitionSpeed 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.presentationml.x2006.main.impl; 9 | /** 10 | * An XML ST_TransitionSpeed(@http://schemas.openxmlformats.org/presentationml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.presentationml.x2006.main.STTransitionSpeed. 13 | */ 14 | public class STTransitionSpeedImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.presentationml.x2006.main.STTransitionSpeed 15 | { 16 | 17 | public STTransitionSpeedImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STTransitionSpeedImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/presentationml/x2006/main/impl/STViewTypeImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_ViewType 3 | * Namespace: http://schemas.openxmlformats.org/presentationml/2006/main 4 | * Java type: org.openxmlformats.schemas.presentationml.x2006.main.STViewType 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.presentationml.x2006.main.impl; 9 | /** 10 | * An XML ST_ViewType(@http://schemas.openxmlformats.org/presentationml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.presentationml.x2006.main.STViewType. 13 | */ 14 | public class STViewTypeImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.presentationml.x2006.main.STViewType 15 | { 16 | 17 | public STViewTypeImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STViewTypeImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/presentationml/x2006/main/impl/STWebColorTypeImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_WebColorType 3 | * Namespace: http://schemas.openxmlformats.org/presentationml/2006/main 4 | * Java type: org.openxmlformats.schemas.presentationml.x2006.main.STWebColorType 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.presentationml.x2006.main.impl; 9 | /** 10 | * An XML ST_WebColorType(@http://schemas.openxmlformats.org/presentationml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.presentationml.x2006.main.STWebColorType. 13 | */ 14 | public class STWebColorTypeImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.presentationml.x2006.main.STWebColorType 15 | { 16 | 17 | public STWebColorTypeImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STWebColorTypeImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/presentationml/x2006/main/impl/STWebEncodingImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_WebEncoding 3 | * Namespace: http://schemas.openxmlformats.org/presentationml/2006/main 4 | * Java type: org.openxmlformats.schemas.presentationml.x2006.main.STWebEncoding 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.presentationml.x2006.main.impl; 9 | /** 10 | * An XML ST_WebEncoding(@http://schemas.openxmlformats.org/presentationml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.presentationml.x2006.main.STWebEncoding. 13 | */ 14 | public class STWebEncodingImpl extends org.apache.xmlbeans.impl.values.JavaStringHolderEx implements org.openxmlformats.schemas.presentationml.x2006.main.STWebEncoding 15 | { 16 | 17 | public STWebEncodingImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STWebEncodingImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/org/openxmlformats/schemas/presentationml/x2006/main/impl/STWebScreenSizeImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * XML Type: ST_WebScreenSize 3 | * Namespace: http://schemas.openxmlformats.org/presentationml/2006/main 4 | * Java type: org.openxmlformats.schemas.presentationml.x2006.main.STWebScreenSize 5 | * 6 | * Automatically generated - do not modify. 7 | */ 8 | package org.openxmlformats.schemas.presentationml.x2006.main.impl; 9 | /** 10 | * An XML ST_WebScreenSize(@http://schemas.openxmlformats.org/presentationml/2006/main). 11 | * 12 | * This is an atomic type that is a restriction of org.openxmlformats.schemas.presentationml.x2006.main.STWebScreenSize. 13 | */ 14 | public class STWebScreenSizeImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.openxmlformats.schemas.presentationml.x2006.main.STWebScreenSize 15 | { 16 | 17 | public STWebScreenSizeImpl(org.apache.xmlbeans.SchemaType sType) 18 | { 19 | super(sType, false); 20 | } 21 | 22 | protected STWebScreenSizeImpl(org.apache.xmlbeans.SchemaType sType, boolean b) 23 | { 24 | super(sType, b); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/main3.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_open.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/69d2ff198fb11dd8d35d85ba82ddb67f2864afa0/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/69d2ff198fb11dd8d35d85ba82ddb67f2864afa0/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/69d2ff198fb11dd8d35d85ba82ddb67f2864afa0/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/69d2ff198fb11dd8d35d85ba82ddb67f2864afa0/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/69d2ff198fb11dd8d35d85ba82ddb67f2864afa0/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/69d2ff198fb11dd8d35d85ba82ddb67f2864afa0/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/69d2ff198fb11dd8d35d85ba82ddb67f2864afa0/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/69d2ff198fb11dd8d35d85ba82ddb67f2864afa0/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/69d2ff198fb11dd8d35d85ba82ddb67f2864afa0/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/69d2ff198fb11dd8d35d85ba82ddb67f2864afa0/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | PPTReader 4 | 5 | -------------------------------------------------------------------------------- /build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | google() 7 | } 8 | dependencies { 9 | classpath 'com.android.tools.build:gradle:3.0.1' 10 | } 11 | } 12 | 13 | allprojects { 14 | repositories { 15 | jcenter() 16 | google() 17 | } 18 | } 19 | 20 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/69d2ff198fb11dd8d35d85ba82ddb67f2864afa0/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Jun 23 16:01:42 CST 2014 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip 7 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------