本文整理了Java中javax.swing.JSpinner.isEnabled()
方法的一些代码示例,展示了JSpinner.isEnabled()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。JSpinner.isEnabled()
方法的具体详情如下:
包路径:javax.swing.JSpinner
类名称:JSpinner
方法名:isEnabled
暂无
代码示例来源:origin: com.jidesoft/jide-oss
public void mouseWheelMoved(MouseWheelEvent e) {
if (spinner == null || !spinner.isEnabled()) {
return;
}
int rotation = e.getWheelRotation();
if (rotation < 0) {
Action action = spinner.getActionMap().get(ACTION_NAME_INCREMENT);
if (action != null) {
action.actionPerformed(new ActionEvent(e.getSource(), 0, ACTION_NAME_INCREMENT));
}
}
else if (rotation > 0) {
Action action = spinner.getActionMap().get(ACTION_NAME_DECREMENT);
if (action != null) {
action.actionPerformed(new ActionEvent(e.getSource(), 0, ACTION_NAME_DECREMENT));
}
}
}
};
代码示例来源:origin: nroduit/Weasis
/**
* okAction
*/
@Override
protected void okAction() {
for (DragGraphic graphic : graphics) {
if (spinnerLineWidth.isEnabled()) {
graphic.setLineThickness(((Integer) spinnerLineWidth.getValue()).floatValue());
}
if (jButtonColor.isEnabled()) {
graphic.setPaint(jButtonColor.getBackground());
}
if (jCheckBoxFilled.isEnabled()) {
graphic.setFilled(jCheckBoxFilled.isSelected());
}
}
if (graphics.size() == 1 && view2D != null) {
DragGraphic graphic = graphics.get(0);
if (graphic instanceof AnnotationGraphic) {
graphic.setLabel(EscapeChars.convertToLines(textPane.getText()), view2D);
}
}
dispose();
}
代码示例来源:origin: org.java.net.substance/substance
this.setEnabled(spinner.isEnabled());
this.setFocusable(false);
this.setRequestFocusEnabled(false);
代码示例来源:origin: com.github.insubstantial/substance
this.setEnabled(spinner.isEnabled());
this.setFocusable(false);
this.setRequestFocusEnabled(false);
内容来源于网络,如有侵权,请联系作者删除!