Subversion Repositories eFlore/Archives.cel-v1

Compare Revisions

Ignore whitespace Rev 13 → Rev 14

/trunk/src/org/tela_botanica/client/LeftPanel.java
27,22 → 27,24
 
private LocationList locationList = null;
private DateList dateList = null;
private StationList stationList = null;
 
public LeftPanel(Mediator mediator) {
 
dateList = new DateList(mediator);
locationList = new LocationList(mediator);
stationList = new StationList(mediator);
dateList.setStyleName("dateList");
locationList.setStyleName("locationList");
locationList.setStyleName("stationList");
StackPanel outer = new StackPanel();
outer.add(locationList,"Communes");
outer.add(dateList,"Dates");
 
// Create the groups within the stack panel.
outer.add(locationList, "<b>Localit&eacute;s</b>", true);
outer.add(stationList,"<b>Stations</b>",true);
outer.add(dateList, "<b>Dates</b>", true);