public interface FormComponentVisitor
Usage:
class Visitor implements FormComponentVisitor {
public boolean visit(FormComponent comp) {
// do something
return true;
}
}
FormModel model = ...;
model.accept(new Visitor());
| Modifier and Type | Method and Description |
|---|---|
boolean |
visit(FormComponent comp)
Visits the given form component.
|
boolean visit(FormComponent comp)
comp - The form component.Copyright (C) 2004-2017 FormDev Software GmbH. All rights reserved.