├── app ├── .gitignore ├── libs │ ├── sjsxp.jar │ ├── dom4j-1.6.1.jar │ ├── log4j-1.2.13.jar │ ├── jsr173_1.0_api.jar │ ├── xmlbeans-2.3.0.jar │ ├── commons-codec-1.5.jar │ ├── commons-logging-1.1.jar │ ├── schemaorg_apache_xmlbeans_new.jar │ └── org-apache-poi-xslf-mofel-geom-PresetGeometries.jar ├── src │ └── main │ │ ├── res │ │ ├── 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 │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ └── layout │ │ │ ├── activity_main.xml │ │ │ └── activity_open.xml │ │ ├── java │ │ ├── net │ │ │ └── pbdavey │ │ │ │ └── awt │ │ │ │ ├── GraphicsEnvironment.java │ │ │ │ ├── FontMetrics.java │ │ │ │ └── Font.java │ │ ├── and │ │ │ └── awt │ │ │ │ ├── Image.java │ │ │ │ ├── ImageIO.java │ │ │ │ └── Font.java │ │ └── org │ │ │ └── openxmlformats │ │ │ └── schemas │ │ │ ├── presentationml │ │ │ └── x2006 │ │ │ │ └── main │ │ │ │ ├── impl │ │ │ │ ├── CTEmptyImpl.java │ │ │ │ ├── STNameImpl.java │ │ │ │ ├── STIndexImpl.java │ │ │ │ ├── STSlideIdImpl.java │ │ │ │ ├── STAlgTypeImpl.java │ │ │ │ ├── STAlgClassImpl.java │ │ │ │ ├── STViewTypeImpl.java │ │ │ │ ├── STCryptProvImpl.java │ │ │ │ ├── STDirectionImpl.java │ │ │ │ ├── STPrintWhatImpl.java │ │ │ │ ├── STWebEncodingImpl.java │ │ │ │ ├── STIterateTypeImpl.java │ │ │ │ ├── STSlideLayoutIdImpl.java │ │ │ │ ├── STSlideMasterIdImpl.java │ │ │ │ ├── STWebColorTypeImpl.java │ │ │ │ ├── STBookmarkIdSeedImpl.java │ │ │ │ ├── STSlideSizeTypeImpl.java │ │ │ │ ├── STWebScreenSizeImpl.java │ │ │ │ ├── STPrintColorModeImpl.java │ │ │ │ ├── STPlaceholderSizeImpl.java │ │ │ │ ├── STPlaceholderTypeImpl.java │ │ │ │ ├── STSlideLayoutTypeImpl.java │ │ │ │ ├── STTransitionSpeedImpl.java │ │ │ │ ├── STPhotoAlbumLayoutImpl.java │ │ │ │ ├── STSplitterBarStateImpl.java │ │ │ │ └── STSlideSizeCoordinateImpl.java │ │ │ │ ├── CTEmpty.java │ │ │ │ ├── STName.java │ │ │ │ ├── STIndex.java │ │ │ │ ├── STSlideId.java │ │ │ │ └── STWebEncoding.java │ │ │ └── drawingml │ │ │ └── x2006 │ │ │ └── main │ │ │ ├── impl │ │ │ ├── CTPath2DCloseImpl.java │ │ │ ├── CTEmptyElementImpl.java │ │ │ ├── CTTextNoBulletImpl.java │ │ │ ├── CTLineJoinBevelImpl.java │ │ │ ├── CTLineJoinRoundImpl.java │ │ │ ├── CTTextNoAutofitImpl.java │ │ │ ├── CTGammaTransformImpl.java │ │ │ ├── CTGrayscaleEffectImpl.java │ │ │ ├── CTAlphaFloorEffectImpl.java │ │ │ ├── CTInverseTransformImpl.java │ │ │ ├── CTNoFillPropertiesImpl.java │ │ │ ├── CTTextShapeAutofitImpl.java │ │ │ ├── CTAlphaCeilingEffectImpl.java │ │ │ ├── CTGrayscaleTransformImpl.java │ │ │ ├── CTComplementTransformImpl.java │ │ │ ├── CTGroupFillPropertiesImpl.java │ │ │ ├── CTGvmlUseShapeRectangleImpl.java │ │ │ ├── CTInverseGammaTransformImpl.java │ │ │ ├── CTTextBulletSizeFollowTextImpl.java │ │ │ ├── CTTextBulletColorFollowTextImpl.java │ │ │ ├── CTTextUnderlineFillFollowTextImpl.java │ │ │ ├── CTTextUnderlineLineFollowTextImpl.java │ │ │ ├── CTTextBulletTypefaceFollowTextImpl.java │ │ │ ├── STGuidImpl.java │ │ │ ├── STAngleImpl.java │ │ │ ├── STPanoseImpl.java │ │ │ ├── STShapeIDImpl.java │ │ │ ├── STFOVAngleImpl.java │ │ │ ├── STLineCapImpl.java │ │ │ ├── STLineWidthImpl.java │ │ │ ├── STTextPointImpl.java │ │ │ ├── STCoordinateImpl.java │ │ │ ├── STFixedAngleImpl.java │ │ │ ├── STPercentageImpl.java │ │ │ ├── STTextIndentImpl.java │ │ │ ├── STTextMarginImpl.java │ │ │ ├── STBlendModeImpl.java │ │ │ ├── STHexBinary3Impl.java │ │ │ ├── STShapeTypeImpl.java │ │ │ ├── STCoordinate32Impl.java │ │ │ ├── STTextFontSizeImpl.java │ │ │ ├── STTextTypefaceImpl.java │ │ │ ├── STLineEndTypeImpl.java │ │ │ ├── STCompoundLineImpl.java │ │ │ ├── STDgmBuildStepImpl.java │ │ │ ├── STGeomGuideNameImpl.java │ │ │ ├── STLightRigTypeImpl.java │ │ │ ├── STLineEndWidthImpl.java │ │ │ ├── STPathFillModeImpl.java │ │ │ ├── STPenAlignmentImpl.java │ │ │ ├── STTextCapsTypeImpl.java │ │ │ ├── STTileFlipModeImpl.java │ │ │ ├── STLineEndLengthImpl.java │ │ │ ├── STPathShadeTypeImpl.java │ │ │ ├── STRectAlignmentImpl.java │ │ │ ├── STTextAlignTypeImpl.java │ │ │ ├── STTextLanguageIDImpl.java │ │ │ ├── STTextShapeTypeImpl.java │ │ │ ├── STFixedPercentageImpl.java │ │ │ ├── STTextColumnCountImpl.java │ │ │ ├── STBlackWhiteModeImpl.java │ │ │ ├── STChartBuildStepImpl.java │ │ │ ├── STOnOffStyleTypeImpl.java │ │ │ ├── STPresetColorValImpl.java │ │ │ ├── STSchemeColorValImpl.java │ │ │ ├── STSystemColorValImpl.java │ │ │ ├── STTextStrikeTypeImpl.java │ │ │ ├── STDrawingElementIdImpl.java │ │ │ ├── STGeomGuideFormulaImpl.java │ │ │ ├── STTextSpacingPointImpl.java │ │ │ ├── STBevelPresetTypeImpl.java │ │ │ ├── STBlipCompressionImpl.java │ │ │ ├── STPresetShadowValImpl.java │ │ │ ├── STColorSchemeIndexImpl.java │ │ │ ├── STPositiveFixedAngleImpl.java │ │ │ ├── STPositivePercentageImpl.java │ │ │ ├── STPresetCameraTypeImpl.java │ │ │ ├── STPresetPatternValImpl.java │ │ │ ├── STTextSpacingPercentImpl.java │ │ │ ├── STTextTabAlignTypeImpl.java │ │ │ ├── STTextVerticalTypeImpl.java │ │ │ ├── STTextWrappingTypeImpl.java │ │ │ ├── STLightRigDirectionImpl.java │ │ │ ├── STPositiveCoordinateImpl.java │ │ │ ├── STPresetLineDashValImpl.java │ │ │ ├── STTextAnchoringTypeImpl.java │ │ │ ├── STTextFontAlignTypeImpl.java │ │ │ ├── STTextUnderlineTypeImpl.java │ │ │ ├── STTextIndentLevelTypeImpl.java │ │ │ ├── STAnimationBuildTypeImpl.java │ │ │ ├── STPresetMaterialTypeImpl.java │ │ │ ├── STPositiveCoordinate32Impl.java │ │ │ ├── STTextBulletStartAtNumImpl.java │ │ │ ├── STTextFontScalePercentImpl.java │ │ │ ├── STTextNonNegativePointImpl.java │ │ │ ├── STEffectContainerTypeImpl.java │ │ │ ├── STFontCollectionIndexImpl.java │ │ │ ├── STTextBulletSizePercentImpl.java │ │ │ ├── STTextAutonumberSchemeImpl.java │ │ │ ├── STTextHorzOverflowTypeImpl.java │ │ │ ├── STTextVertOverflowTypeImpl.java │ │ │ ├── STStyleMatrixColumnIndexImpl.java │ │ │ └── STPositiveFixedPercentageImpl.java │ │ │ ├── CTPath2DClose.java │ │ │ ├── CTEmptyElement.java │ │ │ ├── CTTextNoBullet.java │ │ │ ├── CTLineJoinBevel.java │ │ │ ├── CTLineJoinRound.java │ │ │ ├── CTTextNoAutofit.java │ │ │ ├── CTGammaTransform.java │ │ │ ├── CTGrayscaleEffect.java │ │ │ ├── STGuid.java │ │ │ ├── CTAlphaFloorEffect.java │ │ │ ├── CTInverseTransform.java │ │ │ ├── CTNoFillProperties.java │ │ │ ├── CTTextShapeAutofit.java │ │ │ ├── STAngle.java │ │ │ ├── CTAlphaCeilingEffect.java │ │ │ ├── CTGrayscaleTransform.java │ │ │ ├── STPanose.java │ │ │ ├── CTComplementTransform.java │ │ │ ├── CTGroupFillProperties.java │ │ │ ├── STShapeID.java │ │ │ ├── CTGvmlUseShapeRectangle.java │ │ │ ├── CTInverseGammaTransform.java │ │ │ ├── STTextPoint.java │ │ │ ├── STPercentage.java │ │ │ ├── STCoordinate.java │ │ │ ├── STHexBinary3.java │ │ │ ├── CTTextBulletSizeFollowText.java │ │ │ ├── STFOVAngle.java │ │ │ ├── STCoordinate32.java │ │ │ ├── STTextFontSize.java │ │ │ ├── STTextTypeface.java │ │ │ ├── CTTextBulletColorFollowText.java │ │ │ ├── STFixedAngle.java │ │ │ ├── STGeomGuideName.java │ │ │ ├── STLineWidth.java │ │ │ ├── STTextLanguageID.java │ │ │ ├── CTTextUnderlineFillFollowText.java │ │ │ ├── CTTextUnderlineLineFollowText.java │ │ │ ├── STTextColumnCount.java │ │ │ ├── STTextIndent.java │ │ │ ├── STTextMargin.java │ │ │ ├── CTTextBulletTypefaceFollowText.java │ │ │ └── STTextSpacingPoint.java │ │ └── main3.iml └── proguard-rules.txt ├── settings.gradle ├── .gitignore ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties └── README.md /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | .idea/ 4 | build/ 5 | .DS_Store 6 | *.iml 7 | -------------------------------------------------------------------------------- /app/libs/sjsxp.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/HEAD/app/libs/sjsxp.jar -------------------------------------------------------------------------------- /app/libs/dom4j-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/HEAD/app/libs/dom4j-1.6.1.jar -------------------------------------------------------------------------------- /app/libs/log4j-1.2.13.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/HEAD/app/libs/log4j-1.2.13.jar -------------------------------------------------------------------------------- /app/libs/jsr173_1.0_api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/HEAD/app/libs/jsr173_1.0_api.jar -------------------------------------------------------------------------------- /app/libs/xmlbeans-2.3.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/HEAD/app/libs/xmlbeans-2.3.0.jar -------------------------------------------------------------------------------- /app/libs/commons-codec-1.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/HEAD/app/libs/commons-codec-1.5.jar -------------------------------------------------------------------------------- /app/libs/commons-logging-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/HEAD/app/libs/commons-logging-1.1.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /app/libs/schemaorg_apache_xmlbeans_new.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/HEAD/app/libs/schemaorg_apache_xmlbeans_new.jar -------------------------------------------------------------------------------- /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/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | PPTReader 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/libs/org-apache-poi-xslf-mofel-geom-PresetGeometries.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orient33/androidPPTXreader/HEAD/app/libs/org-apache-poi-xslf-mofel-geom-PresetGeometries.jar -------------------------------------------------------------------------------- /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/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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 11 | -------------------------------------------------------------------------------- /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/res/layout/activity_open.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/drawingml/x2006/main/STTextSpacingPoint.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; 9 | 10 | 11 | /** 12 | * An XML ST_TextSpacingPoint(@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.STTextSpacingPoint. 15 | */ 16 | public interface STTextSpacingPoint 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(STTextSpacingPoint.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("sttextspacingpointdd05type"); 20 | 21 | /** 22 | * A factory class with static methods for creating instances 23 | * of this type. 24 | */ 25 | 26 | } 27 | --------------------------------------------------------------------------------