Dear mmclain,
Thanks for considering Aspose.Slides for JAVA.
Are you setting the Paragraph.setBulletType to symbol?
Paragraph para = tf.getParagraphs().get(0);
para.setHasBullet((short)1);
para.setBulletType(BulletType.SYMBOL);
para.setBulletCharacter('>');
Here is a complete code in JAVA, please also see the output presentation attached by me.
JAVA CODE:
Presentation pres = new Presentation();
Slide sld = pres.getSlideByPosition(1);
com.aspose.slides.Rectangle rect = sld.getShapes().addRectangle(300, 300, 3000, 1);
rect.getLineFormat().setShowLines(false);
TextFrame tf = rect.addTextFrame("This is first paragraph.");
tf.setWrapText(true);
tf.setFitShapeToText(true);
Paragraph para = tf.getParagraphs().get(0);
para.setHasBullet((short) 1);
para.setBulletType(BulletType.SYMBOL);
para.setBulletCharacter('>');
Paragraph newPara = new Paragraph(para);
newPara.getPortions().get(0).setText("This is second paragraph.");
tf.getParagraphs().add(newPara);
pres.write(new FileOutputStream("c:\\out.ppt"));