Subversion Repositories eFlore/Archives.cel-v1

Rev

Rev 11 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 11 Rev 12
Line 25... Line 25...
25
 */
25
 */
Line 26... Line 26...
26
 
26
 
Line 27... Line 27...
27
public class LeftPanel extends Composite {
27
public class LeftPanel extends Composite {
-
 
28
 
Line 28... Line 29...
28
 
29
 private LocationList locationList = null;
Line 29... Line 30...
29
 private LocationList locationList = null;
30
 private DateList dateList = null;
-
 
31
 
30
 
32
  public LeftPanel(Mediator mediator) {
-
 
33
 
-
 
34
	HorizontalPanel inner = new HorizontalPanel();
-
 
35
	dateList = new DateList(mediator);
-
 
36
	locationList = new LocationList(mediator);
31
  public LeftPanel(Mediator mediator) {
37
	
Line 32... Line 38...
32
 
38
	dateList.setStyleName("dateList");
33
	HorizontalPanel inner = new HorizontalPanel();
39
	locationList.setStyleName("locationList");
-
 
40
	
34
	locationList = new LocationList(mediator);
41
	VerticalPanel outer = new VerticalPanel();
Line 35... Line 42...
35
	VerticalPanel outer = new VerticalPanel();
42
 
36
 
43