Browse Source

add missing classes to poi-ooxml-schema.jar

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1839384 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_4_0_0_FINAL
PJ Fanning 5 years ago
parent
commit
99a446828d

+ 9
- 0
src/ooxml/testcases/org/apache/poi/xddf/usermodel/TestNecessaryOOXMLClasses.java View File

@@ -100,6 +100,15 @@ public class TestNecessaryOOXMLClasses {
Assert.assertNotNull(e5);
STMarkerStyle.Enum e6 = STMarkerStyle.Enum.forString("circle");
Assert.assertNotNull(e6);

CTTextBulletTypefaceFollowText ctTextBulletTypefaceFollowText = CTTextBulletTypefaceFollowText.Factory.newInstance();
Assert.assertNotNull(ctTextBulletTypefaceFollowText);
CTTextBulletSizeFollowText ctTextBulletSizeFollowText = CTTextBulletSizeFollowText.Factory.newInstance();
Assert.assertNotNull(ctTextBulletSizeFollowText);
CTTextBulletColorFollowText ctTextBulletColorFollowText = CTTextBulletColorFollowText.Factory.newInstance();
Assert.assertNotNull(ctTextBulletColorFollowText);
CTTextBlipBullet ctTextBlipBullet = CTTextBlipBullet.Factory.newInstance();
Assert.assertNotNull(ctTextBlipBullet);
}

}

Loading…
Cancel
Save