For example:
static import ResultNames.*; public class MyAction implements Action { public String execute() { return SUCCESS; } }
is equivalent to:
static import ResultNames.*; public class MyAction { public String execute() { return SUCCESS; } }@author crazybob@google.com (Bob Lee)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|