01: /* AuBookmark.java
02:
03: {{IS_NOTE
04: Purpose:
05:
06: Description:
07:
08: History:
09: Mon May 29 18:50:13 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.zk.au.out;
18:
19: import org.zkoss.zk.au.AuResponse;
20:
21: /**
22: * A response to ask the client to bookmark the desktop.
23: *
24: * <p>data[0]: the name of the bookmark.
25: *
26: * @author tomyeh
27: * @since 3.0.0
28: */
29: public class AuBookmark extends AuResponse {
30: /**
31: * @param name the bookmark name.
32: */
33: public AuBookmark(String name) {
34: super ("bookmark", name); //component-independent
35: }
36: }
|