Examples of SectionArea


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

Examples of jimm.datavision.SectionArea

}

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

    area = new SectionArea(SectionArea.REPORT_HEADER);
    assertTrue(!area.isDetail());
}
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.