blob: 0ec14aa4d9314713561b8da12164445f0f14fe16 [file] [log] [blame]
package org.eclipse.xwt.core;
/**
* @author Nguyen Viet Hoa
*
*/
public class ValidationStatus {
/** reference to the parent Binding. */
private Object parent;
public Object getParent() {
return parent;
}
public void setParent(Object parent) {
this.parent = parent;
}
/**
* The direct widget that contains the validation status
*/
private Object control;
/**
* The name of the binding whose binding context's status will be the source
* data of the validationstatus's binding
*/
private String sourceName;
public Object getControl() {
return control;
}
public void setControl(Object control) {
this.control = control;
}
public String getSourceName() {
return sourceName;
}
public void setSourceName(String sourceName) {
this.sourceName = sourceName;
}
}