Package net.bnubot.bot.gui.components

Examples of net.bnubot.bot.gui.components.ConfigFlagChecks


      valueComponent = new JCheckBox((String)null, ((Boolean)value).booleanValue());
    } else if(fieldType.equals(int.class) && attr.getName().equals("flagSpoof")) {
      int flags = 0;
      if(value != null)
        flags = ((Integer)value).intValue();
      valueComponent = new ConfigFlagChecks(flags);
    } else {
      valueComponent = new ConfigTextField(v);
    }
    gbc.gridx++;
    jp.add(valueComponent, gbc);
View Full Code Here

TOP

Related Classes of net.bnubot.bot.gui.components.ConfigFlagChecks

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.