|
|||||||||||||||||||
This license of Clover is provided to support the development of Flock only. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover. | |||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
ShowError.java | - | 0% | 0% | 0% |
|
1 |
package net.sf.flock.webapp.components; |
|
2 |
|
|
3 |
import net.sf.tapestry.BaseComponent; |
|
4 |
import net.sf.tapestry.valid.IFieldTracking; |
|
5 |
|
|
6 |
public class ShowError extends BaseComponent { |
|
7 |
|
|
8 |
private IFieldTracking error; |
|
9 |
|
|
10 | 0 |
public IFieldTracking getError() { |
11 | 0 |
return error; |
12 |
} |
|
13 |
|
|
14 | 0 |
public void setError(IFieldTracking errorMessage) { |
15 | 0 |
this.error = errorMessage; |
16 |
} |
|
17 |
|
|
18 |
} |
|
19 |
|
|