类java.awt.peer.CheckboxPeer源码实例Demo

下面列出了怎么用java.awt.peer.CheckboxPeer的API类实例代码及写法,或者点击链接到github查看源代码。

源代码1 项目: jdk1.8-source-analysis   文件: Checkbox.java
/**
 * Sets this check box's label to be the string argument.
 *
 * @param    label   a string to set as the new label, or
 *                        <code>null</code> for no label.
 * @see      #getLabel
 */
public void setLabel(String label) {
    boolean testvalid = false;

    synchronized (this) {
        if (label != this.label && (this.label == null ||
                                    !this.label.equals(label))) {
            this.label = label;
            CheckboxPeer peer = (CheckboxPeer)this.peer;
            if (peer != null) {
                peer.setLabel(label);
            }
            testvalid = true;
        }
    }

    // This could change the preferred size of the Component.
    if (testvalid) {
        invalidateIfValid();
    }
}
 
源代码2 项目: dragonwell8_jdk   文件: Checkbox.java
/**
 * Sets this check box's label to be the string argument.
 *
 * @param    label   a string to set as the new label, or
 *                        <code>null</code> for no label.
 * @see      #getLabel
 */
public void setLabel(String label) {
    boolean testvalid = false;

    synchronized (this) {
        if (label != this.label && (this.label == null ||
                                    !this.label.equals(label))) {
            this.label = label;
            CheckboxPeer peer = (CheckboxPeer)this.peer;
            if (peer != null) {
                peer.setLabel(label);
            }
            testvalid = true;
        }
    }

    // This could change the preferred size of the Component.
    if (testvalid) {
        invalidateIfValid();
    }
}
 
源代码3 项目: TencentKona-8   文件: Checkbox.java
/**
 * Sets this check box's label to be the string argument.
 *
 * @param    label   a string to set as the new label, or
 *                        <code>null</code> for no label.
 * @see      #getLabel
 */
public void setLabel(String label) {
    boolean testvalid = false;

    synchronized (this) {
        if (label != this.label && (this.label == null ||
                                    !this.label.equals(label))) {
            this.label = label;
            CheckboxPeer peer = (CheckboxPeer)this.peer;
            if (peer != null) {
                peer.setLabel(label);
            }
            testvalid = true;
        }
    }

    // This could change the preferred size of the Component.
    if (testvalid) {
        invalidateIfValid();
    }
}
 
源代码4 项目: jdk8u60   文件: Checkbox.java
/**
 * Sets this check box's label to be the string argument.
 *
 * @param    label   a string to set as the new label, or
 *                        <code>null</code> for no label.
 * @see      #getLabel
 */
public void setLabel(String label) {
    boolean testvalid = false;

    synchronized (this) {
        if (label != this.label && (this.label == null ||
                                    !this.label.equals(label))) {
            this.label = label;
            CheckboxPeer peer = (CheckboxPeer)this.peer;
            if (peer != null) {
                peer.setLabel(label);
            }
            testvalid = true;
        }
    }

    // This could change the preferred size of the Component.
    if (testvalid) {
        invalidateIfValid();
    }
}
 
源代码5 项目: JDKSourceCode1.8   文件: Checkbox.java
/**
 * Sets this check box's label to be the string argument.
 *
 * @param    label   a string to set as the new label, or
 *                        <code>null</code> for no label.
 * @see      #getLabel
 */
public void setLabel(String label) {
    boolean testvalid = false;

    synchronized (this) {
        if (label != this.label && (this.label == null ||
                                    !this.label.equals(label))) {
            this.label = label;
            CheckboxPeer peer = (CheckboxPeer)this.peer;
            if (peer != null) {
                peer.setLabel(label);
            }
            testvalid = true;
        }
    }

    // This could change the preferred size of the Component.
    if (testvalid) {
        invalidateIfValid();
    }
}
 
源代码6 项目: openjdk-jdk8u   文件: Checkbox.java
/**
 * Sets this check box's label to be the string argument.
 *
 * @param    label   a string to set as the new label, or
 *                        <code>null</code> for no label.
 * @see      #getLabel
 */
public void setLabel(String label) {
    boolean testvalid = false;

    synchronized (this) {
        if (label != this.label && (this.label == null ||
                                    !this.label.equals(label))) {
            this.label = label;
            CheckboxPeer peer = (CheckboxPeer)this.peer;
            if (peer != null) {
                peer.setLabel(label);
            }
            testvalid = true;
        }
    }

    // This could change the preferred size of the Component.
    if (testvalid) {
        invalidateIfValid();
    }
}
 
源代码7 项目: openjdk-jdk8u-backup   文件: Checkbox.java
/**
 * Sets this check box's label to be the string argument.
 *
 * @param    label   a string to set as the new label, or
 *                        <code>null</code> for no label.
 * @see      #getLabel
 */
public void setLabel(String label) {
    boolean testvalid = false;

    synchronized (this) {
        if (label != this.label && (this.label == null ||
                                    !this.label.equals(label))) {
            this.label = label;
            CheckboxPeer peer = (CheckboxPeer)this.peer;
            if (peer != null) {
                peer.setLabel(label);
            }
            testvalid = true;
        }
    }

    // This could change the preferred size of the Component.
    if (testvalid) {
        invalidateIfValid();
    }
}
 
源代码8 项目: Bytecoder   文件: Checkbox.java
/**
 * Sets this check box's label to be the string argument.
 *
 * @param    label   a string to set as the new label, or
 *                        {@code null} for no label.
 * @see      #getLabel
 */
public void setLabel(String label) {
    boolean testvalid = false;

    synchronized (this) {
        if (label != this.label && (this.label == null ||
                                    !this.label.equals(label))) {
            this.label = label;
            CheckboxPeer peer = (CheckboxPeer)this.peer;
            if (peer != null) {
                peer.setLabel(label);
            }
            testvalid = true;
        }
    }

    // This could change the preferred size of the Component.
    if (testvalid) {
        invalidateIfValid();
    }
}
 
源代码9 项目: openjdk-jdk9   文件: Checkbox.java
/**
 * Sets this check box's label to be the string argument.
 *
 * @param    label   a string to set as the new label, or
 *                        {@code null} for no label.
 * @see      #getLabel
 */
public void setLabel(String label) {
    boolean testvalid = false;

    synchronized (this) {
        if (label != this.label && (this.label == null ||
                                    !this.label.equals(label))) {
            this.label = label;
            CheckboxPeer peer = (CheckboxPeer)this.peer;
            if (peer != null) {
                peer.setLabel(label);
            }
            testvalid = true;
        }
    }

    // This could change the preferred size of the Component.
    if (testvalid) {
        invalidateIfValid();
    }
}
 
源代码10 项目: jdk8u-jdk   文件: Checkbox.java
/**
 * Sets this check box's label to be the string argument.
 *
 * @param    label   a string to set as the new label, or
 *                        <code>null</code> for no label.
 * @see      #getLabel
 */
public void setLabel(String label) {
    boolean testvalid = false;

    synchronized (this) {
        if (label != this.label && (this.label == null ||
                                    !this.label.equals(label))) {
            this.label = label;
            CheckboxPeer peer = (CheckboxPeer)this.peer;
            if (peer != null) {
                peer.setLabel(label);
            }
            testvalid = true;
        }
    }

    // This could change the preferred size of the Component.
    if (testvalid) {
        invalidateIfValid();
    }
}
 
源代码11 项目: Java8CN   文件: Checkbox.java
/**
 * Sets this check box's label to be the string argument.
 *
 * @param    label   a string to set as the new label, or
 *                        <code>null</code> for no label.
 * @see      #getLabel
 */
public void setLabel(String label) {
    boolean testvalid = false;

    synchronized (this) {
        if (label != this.label && (this.label == null ||
                                    !this.label.equals(label))) {
            this.label = label;
            CheckboxPeer peer = (CheckboxPeer)this.peer;
            if (peer != null) {
                peer.setLabel(label);
            }
            testvalid = true;
        }
    }

    // This could change the preferred size of the Component.
    if (testvalid) {
        invalidateIfValid();
    }
}
 
源代码12 项目: hottub   文件: Checkbox.java
/**
 * Sets this check box's label to be the string argument.
 *
 * @param    label   a string to set as the new label, or
 *                        <code>null</code> for no label.
 * @see      #getLabel
 */
public void setLabel(String label) {
    boolean testvalid = false;

    synchronized (this) {
        if (label != this.label && (this.label == null ||
                                    !this.label.equals(label))) {
            this.label = label;
            CheckboxPeer peer = (CheckboxPeer)this.peer;
            if (peer != null) {
                peer.setLabel(label);
            }
            testvalid = true;
        }
    }

    // This could change the preferred size of the Component.
    if (testvalid) {
        invalidateIfValid();
    }
}
 
源代码13 项目: openjdk-8-source   文件: Checkbox.java
/**
 * Sets this check box's label to be the string argument.
 *
 * @param    label   a string to set as the new label, or
 *                        <code>null</code> for no label.
 * @see      #getLabel
 */
public void setLabel(String label) {
    boolean testvalid = false;

    synchronized (this) {
        if (label != this.label && (this.label == null ||
                                    !this.label.equals(label))) {
            this.label = label;
            CheckboxPeer peer = (CheckboxPeer)this.peer;
            if (peer != null) {
                peer.setLabel(label);
            }
            testvalid = true;
        }
    }

    // This could change the preferred size of the Component.
    if (testvalid) {
        invalidateIfValid();
    }
}
 
源代码14 项目: openjdk-8   文件: Checkbox.java
/**
 * Sets this check box's label to be the string argument.
 *
 * @param    label   a string to set as the new label, or
 *                        <code>null</code> for no label.
 * @see      #getLabel
 */
public void setLabel(String label) {
    boolean testvalid = false;

    synchronized (this) {
        if (label != this.label && (this.label == null ||
                                    !this.label.equals(label))) {
            this.label = label;
            CheckboxPeer peer = (CheckboxPeer)this.peer;
            if (peer != null) {
                peer.setLabel(label);
            }
            testvalid = true;
        }
    }

    // This could change the preferred size of the Component.
    if (testvalid) {
        invalidateIfValid();
    }
}
 
源代码15 项目: jdk8u_jdk   文件: Checkbox.java
/**
 * Sets this check box's label to be the string argument.
 *
 * @param    label   a string to set as the new label, or
 *                        <code>null</code> for no label.
 * @see      #getLabel
 */
public void setLabel(String label) {
    boolean testvalid = false;

    synchronized (this) {
        if (label != this.label && (this.label == null ||
                                    !this.label.equals(label))) {
            this.label = label;
            CheckboxPeer peer = (CheckboxPeer)this.peer;
            if (peer != null) {
                peer.setLabel(label);
            }
            testvalid = true;
        }
    }

    // This could change the preferred size of the Component.
    if (testvalid) {
        invalidateIfValid();
    }
}
 
源代码16 项目: jdk8u-jdk   文件: Checkbox.java
/**
 * Sets this check box's label to be the string argument.
 *
 * @param    label   a string to set as the new label, or
 *                        <code>null</code> for no label.
 * @see      #getLabel
 */
public void setLabel(String label) {
    boolean testvalid = false;

    synchronized (this) {
        if (label != this.label && (this.label == null ||
                                    !this.label.equals(label))) {
            this.label = label;
            CheckboxPeer peer = (CheckboxPeer)this.peer;
            if (peer != null) {
                peer.setLabel(label);
            }
            testvalid = true;
        }
    }

    // This could change the preferred size of the Component.
    if (testvalid) {
        invalidateIfValid();
    }
}
 
源代码17 项目: jdk-1.7-annotated   文件: Checkbox.java
/**
 * Sets this check box's label to be the string argument.
 *
 * @param    label   a string to set as the new label, or
 *                        <code>null</code> for no label.
 * @see      #getLabel
 */
public void setLabel(String label) {
    boolean testvalid = false;

    synchronized (this) {
        if (label != this.label && (this.label == null ||
                                    !this.label.equals(label))) {
            this.label = label;
            CheckboxPeer peer = (CheckboxPeer)this.peer;
            if (peer != null) {
                peer.setLabel(label);
            }
            testvalid = true;
        }
    }

    // This could change the preferred size of the Component.
    if (testvalid) {
        invalidateIfValid();
    }
}
 
源代码18 项目: jdk8u-dev-jdk   文件: Checkbox.java
/**
 * Sets this check box's label to be the string argument.
 *
 * @param    label   a string to set as the new label, or
 *                        <code>null</code> for no label.
 * @see      #getLabel
 */
public void setLabel(String label) {
    boolean testvalid = false;

    synchronized (this) {
        if (label != this.label && (this.label == null ||
                                    !this.label.equals(label))) {
            this.label = label;
            CheckboxPeer peer = (CheckboxPeer)this.peer;
            if (peer != null) {
                peer.setLabel(label);
            }
            testvalid = true;
        }
    }

    // This could change the preferred size of the Component.
    if (testvalid) {
        invalidateIfValid();
    }
}
 
源代码19 项目: jdk1.8-source-analysis   文件: Checkbox.java
/**
 * Helper function for setState and CheckboxGroup.setSelectedCheckbox
 * Should remain package-private.
 */
void setStateInternal(boolean state) {
    this.state = state;
    CheckboxPeer peer = (CheckboxPeer)this.peer;
    if (peer != null) {
        peer.setState(state);
    }
}
 
源代码20 项目: dragonwell8_jdk   文件: Checkbox.java
/**
 * Helper function for setState and CheckboxGroup.setSelectedCheckbox
 * Should remain package-private.
 */
void setStateInternal(boolean state) {
    this.state = state;
    CheckboxPeer peer = (CheckboxPeer)this.peer;
    if (peer != null) {
        peer.setState(state);
    }
}
 
源代码21 项目: dragonwell8_jdk   文件: CheckboxRepaint.java
void test() {
    setState(getState());
    ((CheckboxPeer) getPeer()).setState(getState());

    setCheckboxGroup(getCheckboxGroup());
    ((CheckboxPeer) getPeer()).setCheckboxGroup(getCheckboxGroup());

    setLabel("");
    setLabel(null);
    setLabel(getLabel());
    ((CheckboxPeer) getPeer()).setLabel("");
    ((CheckboxPeer) getPeer()).setLabel(null);
    ((CheckboxPeer) getPeer()).setLabel(getLabel());

    setFont(null);
    setFont(getFont());
    getPeer().setFont(getFont());

    setBackground(null);
    setBackground(getBackground());
    getPeer().setBackground(getBackground());

    setForeground(null);
    setForeground(getForeground());
    getPeer().setForeground(getForeground());

    setEnabled(isEnabled());
    getPeer().setEnabled(isEnabled());
}
 
源代码22 项目: TencentKona-8   文件: Checkbox.java
/**
 * Helper function for setState and CheckboxGroup.setSelectedCheckbox
 * Should remain package-private.
 */
void setStateInternal(boolean state) {
    this.state = state;
    CheckboxPeer peer = (CheckboxPeer)this.peer;
    if (peer != null) {
        peer.setState(state);
    }
}
 
源代码23 项目: TencentKona-8   文件: CheckboxRepaint.java
void test() {
    setState(getState());
    ((CheckboxPeer) getPeer()).setState(getState());

    setCheckboxGroup(getCheckboxGroup());
    ((CheckboxPeer) getPeer()).setCheckboxGroup(getCheckboxGroup());

    setLabel("");
    setLabel(null);
    setLabel(getLabel());
    ((CheckboxPeer) getPeer()).setLabel("");
    ((CheckboxPeer) getPeer()).setLabel(null);
    ((CheckboxPeer) getPeer()).setLabel(getLabel());

    setFont(null);
    setFont(getFont());
    getPeer().setFont(getFont());

    setBackground(null);
    setBackground(getBackground());
    getPeer().setBackground(getBackground());

    setForeground(null);
    setForeground(getForeground());
    getPeer().setForeground(getForeground());

    setEnabled(isEnabled());
    getPeer().setEnabled(isEnabled());
}
 
源代码24 项目: jdk8u60   文件: Checkbox.java
/**
 * Helper function for setState and CheckboxGroup.setSelectedCheckbox
 * Should remain package-private.
 */
void setStateInternal(boolean state) {
    this.state = state;
    CheckboxPeer peer = (CheckboxPeer)this.peer;
    if (peer != null) {
        peer.setState(state);
    }
}
 
源代码25 项目: jdk8u60   文件: CheckboxRepaint.java
void test() {
    setState(getState());
    ((CheckboxPeer) getPeer()).setState(getState());

    setCheckboxGroup(getCheckboxGroup());
    ((CheckboxPeer) getPeer()).setCheckboxGroup(getCheckboxGroup());

    setLabel("");
    setLabel(null);
    setLabel(getLabel());
    ((CheckboxPeer) getPeer()).setLabel("");
    ((CheckboxPeer) getPeer()).setLabel(null);
    ((CheckboxPeer) getPeer()).setLabel(getLabel());

    setFont(null);
    setFont(getFont());
    getPeer().setFont(getFont());

    setBackground(null);
    setBackground(getBackground());
    getPeer().setBackground(getBackground());

    setForeground(null);
    setForeground(getForeground());
    getPeer().setForeground(getForeground());

    setEnabled(isEnabled());
    getPeer().setEnabled(isEnabled());
}
 
源代码26 项目: JDKSourceCode1.8   文件: Checkbox.java
/**
 * Helper function for setState and CheckboxGroup.setSelectedCheckbox
 * Should remain package-private.
 */
void setStateInternal(boolean state) {
    this.state = state;
    CheckboxPeer peer = (CheckboxPeer)this.peer;
    if (peer != null) {
        peer.setState(state);
    }
}
 
源代码27 项目: openjdk-jdk8u   文件: Checkbox.java
/**
 * Helper function for setState and CheckboxGroup.setSelectedCheckbox
 * Should remain package-private.
 */
void setStateInternal(boolean state) {
    this.state = state;
    CheckboxPeer peer = (CheckboxPeer)this.peer;
    if (peer != null) {
        peer.setState(state);
    }
}
 
源代码28 项目: openjdk-jdk8u   文件: CheckboxRepaint.java
void test() {
    setState(getState());
    ((CheckboxPeer) getPeer()).setState(getState());

    setCheckboxGroup(getCheckboxGroup());
    ((CheckboxPeer) getPeer()).setCheckboxGroup(getCheckboxGroup());

    setLabel("");
    setLabel(null);
    setLabel(getLabel());
    ((CheckboxPeer) getPeer()).setLabel("");
    ((CheckboxPeer) getPeer()).setLabel(null);
    ((CheckboxPeer) getPeer()).setLabel(getLabel());

    setFont(null);
    setFont(getFont());
    getPeer().setFont(getFont());

    setBackground(null);
    setBackground(getBackground());
    getPeer().setBackground(getBackground());

    setForeground(null);
    setForeground(getForeground());
    getPeer().setForeground(getForeground());

    setEnabled(isEnabled());
    getPeer().setEnabled(isEnabled());
}
 
源代码29 项目: netbeans   文件: FakePeerSupport.java
public static boolean attachFakePeer(Component comp) {
    if (comp == null || comp.isDisplayable()
          || comp instanceof javax.swing.JComponent
          || comp instanceof javax.swing.RootPaneContainer)
        return false;

    FakePeer peer = null;

    if (comp instanceof Label)
        peer = getFakePeer(LabelPeer.class, new FakeLabelPeer((Label) comp));
    else if (comp instanceof Button)
        peer = getFakePeer(ButtonPeer.class, new FakeButtonPeer((Button) comp));                   
    else if (comp instanceof Panel)
        peer = getFakePeer(new Class[] {ContainerPeer.class, PanelPeer.class}, new FakePanelPeer((Panel) comp));
    else if (comp instanceof TextField)
        peer = getFakePeer(new Class[] {TextFieldPeer.class, TextComponentPeer.class}, new FakeTextFieldPeer((TextField) comp));
    else if (comp instanceof TextArea)
        peer = getFakePeer(new Class[] {TextAreaPeer.class, TextComponentPeer.class}, new FakeTextAreaPeer((TextArea) comp));
    else if (comp instanceof TextComponent)
        peer = getFakePeer(TextComponentPeer.class, new FakeTextComponentPeer((TextComponent) comp));
    else if (comp instanceof Checkbox)
        peer = getFakePeer(CheckboxPeer.class, new FakeCheckboxPeer((Checkbox) comp));
    else if (comp instanceof Choice)
        peer = getFakePeer(ChoicePeer.class, new FakeChoicePeer((Choice) comp));
    else if (comp instanceof List)
        peer = getFakePeer(ListPeer.class, new FakeListPeer((List) comp));
    else if (comp instanceof Scrollbar)
        peer = getFakePeer(ScrollbarPeer.class, new FakeScrollbarPeer((Scrollbar) comp));
    else if (comp instanceof ScrollPane)
        peer = getFakePeer(new Class[] {ContainerPeer.class, ScrollPanePeer.class}, new FakeScrollPanePeer((ScrollPane) comp));
    else if (comp instanceof Canvas)
        peer = getFakePeer(CanvasPeer.class, new FakeCanvasPeer((Canvas) comp));
    else
        return false;

    attachFakePeer(comp, peer);
    return true;
}
 
源代码30 项目: openjdk-jdk8u-backup   文件: Checkbox.java
/**
 * Helper function for setState and CheckboxGroup.setSelectedCheckbox
 * Should remain package-private.
 */
void setStateInternal(boolean state) {
    this.state = state;
    CheckboxPeer peer = (CheckboxPeer)this.peer;
    if (peer != null) {
        peer.setState(state);
    }
}
 
 类所在包
 同包方法