2009/05/20 - Apache Shale has been retired.
For more information, please explore the Attic.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 package org.apache.shale.dialog.basic.config;
19
20 import org.apache.shale.dialog.basic.model.EndState;
21
22 /***
23 * <p>{@link EndStateImpl} is a basic implementation of
24 * {@link EndState}.</p>
25 *
26 * @since 1.0.4
27 *
28 * $Id: EndStateImpl.java 419431 2006-07-06 04:38:39Z wsmoak $
29 */
30
31 public final class EndStateImpl extends ViewStateImpl implements EndState {
32
33
34
35
36
37 /***
38 * <p>Render a printable version of this instance.</p>
39 *
40 * @return The printable version of this instance
41 */
42 public String toString() {
43
44 return "EndState[dialog=" +
45 ((getDialog() != null) ? getDialog().getName() : "<null>") +
46 ",name=" + getName() +
47 ",viewId=" + getViewId() + "]";
48
49 }
50
51
52 }