fr.jussieu.gla.wasa.core.junit
Class DateBeanVar
java.lang.Object
|
+--fr.jussieu.gla.wasa.core.Var
|
+--fr.jussieu.gla.wasa.core.junit.DateBeanVar
- public class DateBeanVar
- extends Var
A Var mapping the DateValue property of a DateBean
.
- Version:
- $Revision: 1.2 $ $Date: 2002/03/29 18:46:33 $
- Author:
- Laurent Caillette
Method Summary |
protected java.lang.Object |
cloneValue()
Override this method to provide custom cloning operation. |
java.lang.Object |
getReferencedValue()
Override this method to provide the specific behavior for getting the
reference to the value object hold by buisness object. |
void |
setReferencedValue(java.lang.Object value)
Override this method to provide the specific behavior of updating the
value object held by buisness object. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
DateBeanVar
public DateBeanVar(Explorer explorer,
DateBean bean)
setReferencedValue
public void setReferencedValue(java.lang.Object value)
- Description copied from class:
Var
- Override this method to provide the specific behavior of updating the
value object held by buisness object.
- Overrides:
setReferencedValue
in class Var
- Following copied from class:
fr.jussieu.gla.wasa.core.Var
- Parameters:
value
- The value to set.
getReferencedValue
public java.lang.Object getReferencedValue()
- Description copied from class:
Var
- Override this method to provide the specific behavior for getting the
reference to the value object hold by buisness object.
- Overrides:
getReferencedValue
in class Var
- Following copied from class:
fr.jussieu.gla.wasa.core.Var
- Returns:
- A reference to the value object.
cloneValue
protected java.lang.Object cloneValue()
throws java.lang.CloneNotSupportedException
- Description copied from class:
Var
- Override this method to provide custom cloning operation. The framework
guarantees that it won't be called if value is null.
- Overrides:
cloneValue
in class Var
- Following copied from class:
fr.jussieu.gla.wasa.core.Var
- Returns:
- A clone of value object.
- Throws:
java.lang.CloneNotSupportedException
- as Object.clone()
does.