Package org.cishell.utility.swt.model.datasynchronizer

Examples of org.cishell.utility.swt.model.datasynchronizer.CheckBoxDataSynchronizer


      boolean on,
      Composite parent,
      int style)
      throws UniqueNameException {
    Button checkBox = new Button(parent, style | SWT.CHECK);
    CheckBoxDataSynchronizer dataSynchronizer = new CheckBoxDataSynchronizer(checkBox, on);
    SWTModelField<Boolean, Button, CheckBoxDataSynchronizer> field =
      new SWTModelField<Boolean, Button, CheckBoxDataSynchronizer>(
        this, name, parent, on, checkBox, dataSynchronizer);
    addField(areaName, groupName, field);
View Full Code Here

TOP

Related Classes of org.cishell.utility.swt.model.datasynchronizer.CheckBoxDataSynchronizer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.