KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > inversoft > verge > mvc > controller > actionflow > config > RenderableNode


1 /*
2  * Copyright (c) 2003, Inversoft Corporation, All Rights Reserved
3  */

4 package com.inversoft.verge.mvc.controller.actionflow.config;
5
6
7 import com.inversoft.verge.mvc.controller.Result;
8
9
10 /**
11  * <p>
12  * This interface should be implemented by any Node that is
13  * to be rendered at the end of execution. For example, JSP
14  * presentation nodes would implement this interface.
15  * </p>
16  *
17  * @author Brian Pontarelli
18  * @since 2.0
19  * @version 2.0
20  */

21 public interface RenderableNode extends Result {
22     // Empty interface
23
}
24
Popular Tags