Package org.jostraca.section

Examples of org.jostraca.section.Collapser


    barin.setContent( bartext );
    SectionSet foobarin = new SectionSet();
    foobarin.addSection( fooin );
    foobarin.addSection( barin );

    Collapser collapser = new Collapser();
   
    Section fooout = collapser.modify( fooin, mps );
    assertTrue( fooout.getContent().equals( footextcollapse ) );
    assertTrue( fooout.getName().equals( fooname ) );

    collapser.modify( barin, mps );
    assertTrue( barin.getContent().equals( bartextcollapse ) );
    assertTrue( barin.getName().equals( barname ) );   

    fooin.setContent( footext );
    barin.setContent( bartext );

    SectionSet  foobarout   = collapser.modify( foobarin, mps );
    Enumeration sectionEnum = foobarout.enumerateSections();
    while( sectionEnum.hasMoreElements() ) {
      Section section = (Section) sectionEnum.nextElement();
      if( fooname.equals( section.getName() ) ) {
        assertTrue( section.getContent().equals( footextcollapse ) );
View Full Code Here

TOP

Related Classes of org.jostraca.section.Collapser

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.