JFormDesigner 5.0.4 Runtime API

com.jformdesigner.model
Interface FormBindingVisitor


public interface FormBindingVisitor

An object that visits form bindings.

Usage:

 class Visitor implements FormBindingVisitor {
     public boolean visit(FormBinding binding) {
         // do something
         return true;
     }
 }

 FormModel model = ...;
 model.accept(new Visitor());
 

Since:
5.0

Method Summary
 boolean visit(FormBinding binding)
          Visits the given form binding.
 

Method Detail

visit

boolean visit(FormBinding binding)
Visits the given form binding.

Parameters:
binding - The form binding.
Returns:
true to continue visiting following form bindings or false to cancel visiting.

JFormDesigner 5.0.4 Runtime API

Copyright (C) 2004-2012 FormDev Software GmbH. All rights reserved.