HTML and CSS Reference
In-Depth Information
places.remove(place);
break;
}
if (places.size() == 0) {
FacesContext.getCurrentInstance().addMessage(null,
new FacesMessage("Congratulations!
You are done."));
initialize();
}
}
private void initialize () {
egyptPlaces = new ArrayList<>();
germanyPlaces = new ArrayList<>();
brazilPlaces = new ArrayList<>();
places = new ArrayList<>();
places.add(new Place("The Great Pyramids of Giza", "Egypt"));
places.add(new Place("Western Pomerania Lagoon Area National Park", "Germany"));
places.add(new Place("Catete Palace", "Brazil"));
places.add(new Place("Saxon Switzerland National Park", "Germany"));
places.add(new Place("Luxor Temple", "Egypt"));
places.add(new Place("Mariano Procópio Museum", "Brazil"));
places.add(new Place("Bavarian Forest National Park", "Germany"));
places.add(new Place("Museu do Índio", "Brazil"));
places.add(new Place("Cairo Tower", "Egypt"));
}
}
Finally, Listing 9-15 shows the CSS style classes of RightCountry application.
Listing 9-15. CSS Style Classes of RightCountry Application
.column {
width: 25%;
vertical-align: top;
}
.dropTargetPanel {
width: 90%;
}
.dropSourcePanel {
width: 133px;
}
.containerPanel {
width: 100%;
}
Search WWH ::




Custom Search