private static final String TRUE = "true"; //NOI18N
private static final String EMPTY = ""; //NOI18N
public static void linkBooleanStringElement(Object model, javax.swing.AbstractButton view, String propName)
throws java.beans.IntrospectionException {
view.addItemListener(new BooleanStringItemListener(model, propName));
view.setSelected(getStringElementValue(model, propName).equals(TRUE));
}