Package org.apache.xmlgraphics.ps.dsc.events

Examples of org.apache.xmlgraphics.ps.dsc.events.DSCCommentEndComments


public class DSCToolsTestCase extends TestCase {

    public void testEndComment() throws Exception {
        DSCEvent event;
       
        event = new DSCCommentEndComments();
        assertTrue(DSCTools.headerCommentsEndHere(event));

        event = new PostScriptComment("FOPTest");
        assertFalse(DSCTools.headerCommentsEndHere(event));
View Full Code Here


public class DSCToolsTestCase extends TestCase {

    public void testEndComment() throws Exception {
        DSCEvent event;

        event = new DSCCommentEndComments();
        assertTrue(DSCTools.headerCommentsEndHere(event));

        event = new PostScriptComment("FOPTest");
        assertFalse(DSCTools.headerCommentsEndHere(event));
View Full Code Here

TOP

Related Classes of org.apache.xmlgraphics.ps.dsc.events.DSCCommentEndComments

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.