KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > icesoft > faces > webapp > command > Command


1 package com.icesoft.faces.webapp.command;
2
3 import java.io.IOException JavaDoc;
4 import java.io.Writer JavaDoc;
5
6 public interface Command {
7
8     Command coalesceWith(Command command);
9
10     Command coalesceWith(Macro macro);
11
12     Command coalesceWith(UpdateElements updateElements);
13
14     Command coalesceWith(Redirect redirect);
15
16     Command coalesceWith(SessionExpired sessionExpired);
17
18     Command coalesceWith(SetCookie setCookie);
19
20     Command coalesceWith(Pong pong);
21
22     Command coalesceWith(NOOP noop);
23     
24     void serializeTo(Writer JavaDoc writer) throws IOException JavaDoc;
25 }
26
Popular Tags