01: /*
02: * Shopping.java
03: *
04: * Created on 18 September 2007, 18:15
05: *
06: * To change this template, choose Tools | Template Manager
07: * and open the template in the editor.
08: */
09:
10: package xui.samples.carousel.components;
11:
12: import com.xoetrope.swing.XCaptionedImage;
13: import com.xoetrope.swing.XRollupBar;
14: import net.xoetrope.optional.annotation.Find;
15: import net.xoetrope.swing.XImage;
16: import net.xoetrope.swing.XPanel;
17: import net.xoetrope.swing.XScrollPane;
18: import net.xoetrope.xui.XPage;
19:
20: /**
21: *
22: * @author kingsley.elmes
23: */
24: public class Shopping extends XPage {
25: @Find
26: XScrollPane scrollPane;
27:
28: /** Creates a new instance of Shopping */
29: public Shopping() {
30: }
31:
32: public void pageActivated() {
33: scrollPane.validate();
34: }
35: }
|