01: /* ZulEvents.java
02:
03: {{IS_NOTE
04: Purpose:
05:
06: Description:
07:
08: History:
09: Fri Aug 18 09:20:23 2006, Created by tomyeh
10: }}IS_NOTE
11:
12: Copyright (C) 2006 Potix Corporation. All Rights Reserved.
13:
14: {{IS_RIGHT
15: }}IS_RIGHT
16: */
17: package org.zkoss.zul.event;
18:
19: /**
20: * Utilities to access events for ZK and ZUL.
21: *
22: * @author tomyeh
23: */
24: public class ZulEvents {
25: private ZulEvents() {
26: } //prevent from creation
27:
28: /** The onPaging event used with {@link PagingEvent}.
29: */
30: public static final String ON_PAGING = "onPaging";
31: /** The onPageSize event used with {@link PageSizeEvent}.
32: */
33: public static final String ON_PAGE_SIZE = "onPageSize";
34: /** The onColSize event used with {@link ColSizeEvent}.
35: */
36: public static final String ON_COL_SIZE = "onColSize";
37: }
|