微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

javax.swing.colorchooser.DefaultColorSelectionModel的实例源码

项目:cn1    文件JColorChooserTest.java   
public void testJColorChooser() throws Exception {
    assertSame(DefaultColorSelectionModel.class,ch.getSelectionModel().getClass());
    assertNull(ch.accessibleContext);
    assertEquals(Color.WHITE,ch.getColor());
    ch = new JColorChooser(Color.BLACK);
    assertEquals(Color.BLACK,ch.getColor());
    ColorSelectionModel model = new DefaultColorSelectionModel();
    ch = new JColorChooser(model);
    assertFalse(propertyChangeController.isChanged());
    assertSame(model,ch.getSelectionModel());
    assertSame(BorderLayout.class,ch.getLayout().getClass());
}
项目:cn1    文件JColorChooserTest.java   
public void testSetGetSelectionModel() throws Exception {
    assertNotNull(ch.getSelectionModel());
    ColorSelectionModel oldModel = ch.getSelectionModel();
    ColorSelectionModel model = new DefaultColorSelectionModel();
    ch.setSelectionModel(model);
    assertTrue(propertyChangeController.isChanged(JColorChooser.SELECTION_MODEL_PROPERTY));
    assertSame(model,((PropertyChangeEvent) propertyChangeController.getLastEvent())
            .getNewValue());
    assertSame(oldModel,((PropertyChangeEvent) propertyChangeController.getLastEvent())
            .getoldValue());
    ch.setSelectionModel(null);
    assertNull(ch.getSelectionModel());
}
项目:cn1    文件BasicColorChooserUITest.java   
public void testInstallUninstallListeners() throws Exception {
    ui.uninstallListeners();
    int propchangelistCount = ch.getPropertychangelisteners().length;
    int changelistcount = ((DefaultColorSelectionModel) ch.getSelectionModel())
            .getchangelisteners().length;
    ui.installListeners();
    assertEquals(propchangelistCount + 1,ch.getPropertychangelisteners().length);
    assertEquals(changelistcount + 1,((DefaultColorSelectionModel) ch.getSelectionModel())
            .getchangelisteners().length);
    ui.uninstallListeners();
    assertEquals(propchangelistCount,ch.getPropertychangelisteners().length);
    assertEquals(changelistcount,((DefaultColorSelectionModel) ch.getSelectionModel())
            .getchangelisteners().length);
}
项目:freeVM    文件JColorChooserTest.java   
public void testJColorChooser() throws Exception {
    assertSame(DefaultColorSelectionModel.class,ch.getLayout().getClass());
}
项目:freeVM    文件JColorChooserTest.java   
public void testSetGetSelectionModel() throws Exception {
    assertNotNull(ch.getSelectionModel());
    ColorSelectionModel oldModel = ch.getSelectionModel();
    ColorSelectionModel model = new DefaultColorSelectionModel();
    ch.setSelectionModel(model);
    assertTrue(propertyChangeController.isChanged(JColorChooser.SELECTION_MODEL_PROPERTY));
    assertSame(model,((PropertyChangeEvent) propertyChangeController.getLastEvent())
            .getoldValue());
    ch.setSelectionModel(null);
    assertNull(ch.getSelectionModel());
}
项目:freeVM    文件BasicColorChooserUITest.java   
public void testInstallUninstallListeners() throws Exception {
    ui.uninstallListeners();
    int propchangelistCount = ch.getPropertychangelisteners().length;
    int changelistcount = ((DefaultColorSelectionModel) ch.getSelectionModel())
            .getchangelisteners().length;
    ui.installListeners();
    assertEquals(propchangelistCount + 1,((DefaultColorSelectionModel) ch.getSelectionModel())
            .getchangelisteners().length);
}
项目:javify    文件JColorChooser.java   
/**
 * This method creates a new JColorChooser with the default initial color.
 */
public JColorChooser()
{
  this(new DefaultColorSelectionModel());
}
项目:binnavi    文件CColorChooser.java   
public CColorChooser() {
  this(new DefaultColorSelectionModel(Color.WHITE),null);
}
项目:binnavi    文件CColorChooser.java   
public CColorChooser(final Color initialColor) {
  this(new DefaultColorSelectionModel(initialColor),null);
}
项目:binnavi    文件CColorChooser.java   
public CColorChooser(final Color initialColor,final Color[] recentColors) {
  this(new DefaultColorSelectionModel(initialColor),recentColors);
}
项目:jvm-stm    文件JColorChooser.java   
/**
 * This method creates a new JColorChooser with the default initial color.
 */
public JColorChooser()
{
  this(new DefaultColorSelectionModel());
}
项目:cn1    文件JColorChooser.java   
public JColorChooser() {
    this(new DefaultColorSelectionModel(Color.WHITE));
}
项目:cn1    文件JColorChooser.java   
public JColorChooser(Color initialColor) {
    this(new DefaultColorSelectionModel(initialColor));
}
项目:JamVM-PH    文件JColorChooser.java   
/**
 * This method creates a new JColorChooser with the default initial color.
 */
public JColorChooser()
{
  this(new DefaultColorSelectionModel());
}
项目:TeachingBox    文件SettingsDialog.java   
public void stateChanged(ChangeEvent arg0) {
    DefaultColorSelectionModel cc = (DefaultColorSelectionModel)arg0.getSource();
    this.color = cc.getSelectedColor();
}
项目:classpath    文件JColorChooser.java   
/**
 * This method creates a new JColorChooser with the default initial color.
 */
public JColorChooser()
{
  this(new DefaultColorSelectionModel());
}
项目:freeVM    文件JColorChooser.java   
public JColorChooser() {
    this(new DefaultColorSelectionModel(Color.WHITE));
}
项目:freeVM    文件JColorChooser.java   
public JColorChooser(Color initialColor) {
    this(new DefaultColorSelectionModel(initialColor));
}
项目:javify    文件JColorChooser.java   
/**
 * This method creates a new JColorChooser with the given initial color.
 *
 * @param initial The initial color.
 */
public JColorChooser(Color initial)
{
  this(new DefaultColorSelectionModel(initial));
}
项目:jvm-stm    文件JColorChooser.java   
/**
 * This method creates a new JColorChooser with the given initial color.
 *
 * @param initial The initial color.
 */
public JColorChooser(Color initial)
{
  this(new DefaultColorSelectionModel(initial));
}
项目:JamVM-PH    文件JColorChooser.java   
/**
 * This method creates a new JColorChooser with the given initial color.
 *
 * @param initial The initial color.
 */
public JColorChooser(Color initial)
{
  this(new DefaultColorSelectionModel(initial));
}
项目:classpath    文件JColorChooser.java   
/**
 * This method creates a new JColorChooser with the given initial color.
 *
 * @param initial The initial color.
 */
public JColorChooser(Color initial)
{
  this(new DefaultColorSelectionModel(initial));
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。