"<br><br><b>Severity 3</b> - Minor problem<br>Inability to use a function of the " +
"system occurs, but it does not seriously affect the user's operations.";
htmlFlow.setContents(contents);
final SectionStack sectionStack = new SectionStack();
sectionStack.setVisibilityMode(VisibilityMode.MULTIPLE);
sectionStack.setWidth(300);
sectionStack.setHeight(350);
SectionStackSection section1 = new SectionStackSection("Blue Pawn");
section1.setExpanded(true);
section1.addItem(new Img("pieces/48/pawn_blue.png", 48, 48));
sectionStack.addSection(section1);
SectionStackSection section2 = new SectionStackSection("HTML Flow");
section2.setExpanded(true);
section2.setCanCollapse(true);
section2.addItem(htmlFlow);
sectionStack.addSection(section2);
SectionStackSection section3 = new SectionStackSection("Green Cube");
section3.setExpanded(true);
section3.setCanCollapse(false);
section3.addItem(new Img("pieces/48/cube_green.png", 48, 48));
sectionStack.addSection(section3);
final SectionStackSection section4 = new SectionStackSection("Yellow Piece");
section4.setExpanded(false);
section4.setHidden(true);
section4.addItem(new Img("pieces/48/piece_yellow.png", 48, 48));
sectionStack.addSection(section4);
IButton showButton = new IButton("Show Section");
showButton.setWidth(150);
showButton.addClickHandler(new ClickHandler() {
public void onClick(ClickEvent event) {
sectionStack.showSection(3);
}
});
IButton hideButton = new IButton("Hide Section");
hideButton.setWidth(150);
hideButton.addClickHandler(new ClickHandler() {
public void onClick(ClickEvent event) {
sectionStack.hideSection(3);
}
});
HLayout layout = new HLayout();
layout.setMembersMargin(20);