public function accept(visitable:Visitable):Boolean
Returns true if this IVisitor implementation "accepts"
to visit the supplied visitable, false otherwise.
Parameters
| visitable:Visitable — the Visitable to be accepted or not.
|
Returns
| Boolean — true if this IVisitor implementation "accepts"
to visit the supplied visitable, false otherwise.
|
public function visit(visitable:Visitable):Boolean
Returns true if this IVisitor implementation, after
visiting the supplied visitable, wants it to be cascaded (so its
properties will be visited), false otherwise.
This method is not called if this IVisitor implementation
didn't return true after the call to the "accept" method.
Parameters
| visitable:Visitable — the Visitable to be visited and then
cascaded or not.
|
Returns
| Boolean — true if this IVisitor implementation wants
to cascade the supplied visitable value, false otherwise.
|