public class Action extends Object implements Serializable
| Constructor and Description |
|---|
Action() |
Action(String name,
String dataSource,
Statement statement) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object obj)
Overrides the Object.equals method.
|
String |
getDataSource()
Returns the value of field 'dataSource'.
|
String |
getName()
Returns the value of field 'name'.
|
Statement |
getStatement()
Returns the value of field 'statement'.
|
int |
hashCode()
Overrides the Object.hashCode method.
|
void |
setDataSource(String dataSource)
Sets the value of field 'dataSource'.
|
void |
setName(String name)
Sets the value of field 'name'.
|
void |
setStatement(Statement statement)
Sets the value of field 'statement'.
|
public boolean equals(Object obj)
public String getDataSource()
public String getName()
public Statement getStatement()
public int hashCode()
The following steps came from Effective Java Programming Language Guide by Joshua Bloch, Chapter 3
public void setDataSource(String dataSource)
dataSource - the value of field 'dataSource'.public void setName(String name)
name - the value of field 'name'.public void setStatement(Statement statement)
statement - the value of field 'statement'.Copyright © 2015. All rights reserved.