Package jimm.datavision

Examples of jimm.datavision.SectionArea


public SectionAreaTest(String name) {
    super(name);
}

public void setUp() {
    area = new SectionArea(SectionArea.DETAIL);
    report = new Report();
    sect = new Section(report);
}
View Full Code Here


}

public void testIsDetail() {
    assertTrue(area.isDetail());

    area = new SectionArea(SectionArea.REPORT_HEADER);
    assertTrue(!area.isDetail());
}
View Full Code Here

TOP

Related Classes of jimm.datavision.SectionArea

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.