| |
|
| java.lang.Object org.millstone.base.Application org.millstone.examples.gogame.Go
Method Summary | |
public void | close() | public Action[] | getActions(Object target, Object source) Implementing the Action.Handler interface - this function returns
the available actions. | public void | handleAction(Action action, Object sender, Object target) Implementing the Action.Handler interface - this function handles
the specified action. | public void | init() The initialization method that is the only requirement for
inheriting the org.millstone.base.service.Application class. | public void | login() This function is called when a player tries to log in. | public void | valueChange(Property.ValueChangeEvent event) Implementing the Property.ValueChangeListener interface - this function
is called when a value change event occurs. |
close | public void close()(Code) | | |
getActions | public Action[] getActions(Object target, Object source)(Code) | | Implementing the Action.Handler interface - this function returns
the available actions.
See Also: org.millstone.base.event.Action.Handler |
handleAction | public void handleAction(Action action, Object sender, Object target)(Code) | | Implementing the Action.Handler interface - this function handles
the specified action.
See Also: org.millstone.base.event.Action.Handler |
init | public void init()(Code) | | The initialization method that is the only requirement for
inheriting the org.millstone.base.service.Application class. It will
be automatically called by the framework when a user accesses the
application.
We'll initialize our components here.
|
login | public void login()(Code) | | This function is called when a player tries to log in.
|
valueChange | public void valueChange(Property.ValueChangeEvent event)(Code) | | Implementing the Property.ValueChangeListener interface - this function
is called when a value change event occurs.
See Also: org.millstone.base.data.Property.ValueChangeListener |
|
|
|