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

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

源代码1 项目: jdk1.8-source-analysis   文件: TrayIcon.java
void removeNotify() {
    TrayIconPeer p = null;
    synchronized (this) {
        p = peer;
        peer = null;
    }
    if (p != null) {
        p.dispose();
    }
}
 
源代码2 项目: dragonwell8_jdk   文件: TrayIcon.java
void removeNotify() {
    TrayIconPeer p = null;
    synchronized (this) {
        p = peer;
        peer = null;
    }
    if (p != null) {
        p.dispose();
    }
}
 
源代码3 项目: TencentKona-8   文件: TrayIcon.java
void removeNotify() {
    TrayIconPeer p = null;
    synchronized (this) {
        p = peer;
        peer = null;
    }
    if (p != null) {
        p.dispose();
    }
}
 
源代码4 项目: jdk8u60   文件: TrayIcon.java
void removeNotify() {
    TrayIconPeer p = null;
    synchronized (this) {
        p = peer;
        peer = null;
    }
    if (p != null) {
        p.dispose();
    }
}
 
源代码5 项目: JDKSourceCode1.8   文件: TrayIcon.java
void removeNotify() {
    TrayIconPeer p = null;
    synchronized (this) {
        p = peer;
        peer = null;
    }
    if (p != null) {
        p.dispose();
    }
}
 
源代码6 项目: openjdk-jdk8u   文件: TrayIcon.java
void removeNotify() {
    TrayIconPeer p = null;
    synchronized (this) {
        p = peer;
        peer = null;
    }
    if (p != null) {
        p.dispose();
    }
}
 
源代码7 项目: jdk-1.7-annotated   文件: TrayIcon.java
void removeNotify() {
    TrayIconPeer p = null;
    synchronized (this) {
        p = peer;
        peer = null;
    }
    if (p != null) {
        p.dispose();
    }
}
 
源代码8 项目: openjdk-jdk8u-backup   文件: TrayIcon.java
void removeNotify() {
    TrayIconPeer p = null;
    synchronized (this) {
        p = peer;
        peer = null;
    }
    if (p != null) {
        p.dispose();
    }
}
 
源代码9 项目: Bytecoder   文件: TrayIcon.java
void removeNotify() {
    TrayIconPeer p = null;
    synchronized (this) {
        p = peer;
        peer = null;
        if (popup != null) {
            popup.removeNotify();
        }
    }
    if (p != null) {
        p.dispose();
    }
}
 
源代码10 项目: openjdk-jdk9   文件: TrayIcon.java
void removeNotify() {
    TrayIconPeer p = null;
    synchronized (this) {
        p = peer;
        peer = null;
        if (popup != null) {
            popup.removeNotify();
        }
    }
    if (p != null) {
        p.dispose();
    }
}
 
源代码11 项目: jdk8u-dev-jdk   文件: TrayIcon.java
void removeNotify() {
    TrayIconPeer p = null;
    synchronized (this) {
        p = peer;
        peer = null;
    }
    if (p != null) {
        p.dispose();
    }
}
 
源代码12 项目: jdk8u-jdk   文件: TrayIcon.java
void removeNotify() {
    TrayIconPeer p = null;
    synchronized (this) {
        p = peer;
        peer = null;
    }
    if (p != null) {
        p.dispose();
    }
}
 
源代码13 项目: Java8CN   文件: TrayIcon.java
void removeNotify() {
    TrayIconPeer p = null;
    synchronized (this) {
        p = peer;
        peer = null;
    }
    if (p != null) {
        p.dispose();
    }
}
 
源代码14 项目: hottub   文件: TrayIcon.java
void removeNotify() {
    TrayIconPeer p = null;
    synchronized (this) {
        p = peer;
        peer = null;
    }
    if (p != null) {
        p.dispose();
    }
}
 
源代码15 项目: jdk8u-jdk   文件: TrayIcon.java
void removeNotify() {
    TrayIconPeer p = null;
    synchronized (this) {
        p = peer;
        peer = null;
    }
    if (p != null) {
        p.dispose();
    }
}
 
源代码16 项目: Bytecoder   文件: HeadlessToolkit.java
public TrayIconPeer createTrayIcon(TrayIcon target)
  throws HeadlessException {
    throw new HeadlessException();
}
 
源代码17 项目: Bytecoder   文件: SunToolkit.java
public abstract TrayIconPeer createTrayIcon(TrayIcon target)
throws HeadlessException, AWTException;
 
源代码18 项目: openjdk-jdk9   文件: HeadlessToolkit.java
public TrayIconPeer createTrayIcon(TrayIcon target)
  throws HeadlessException {
    throw new HeadlessException();
}
 
源代码19 项目: openjdk-jdk9   文件: SunToolkit.java
public abstract TrayIconPeer createTrayIcon(TrayIcon target)
throws HeadlessException, AWTException;
 
源代码20 项目: openjdk-jdk9   文件: HToolkit.java
@Override
public TrayIconPeer createTrayIcon(TrayIcon target)
  throws HeadlessException {
    throw new HeadlessException();
}
 
源代码21 项目: jdk1.8-source-analysis   文件: TrayIcon.java
/**
 * Sets the image for this <code>TrayIcon</code>.  The previous
 * tray icon image is discarded without calling the {@link
 * java.awt.Image#flush} method &#151; you will need to call it
 * manually.
 *
 * <p> If the image represents an animated image, it will be
 * animated automatically.
 *
 * <p> See the {@link #setImageAutoSize(boolean)} property for
 * details on the size of the displayed image.
 *
 * <p> Calling this method with the same image that is currently
 * being used has no effect.
 *
 * @throws NullPointerException if <code>image</code> is <code>null</code>
 * @param image the non-null <code>Image</code> to be used
 * @see #getImage
 * @see Image
 * @see SystemTray#add(TrayIcon)
 * @see TrayIcon#TrayIcon(Image, String)
 */
public void setImage(Image image) {
    if (image == null) {
        throw new NullPointerException("setting null Image");
    }
    this.image = image;

    TrayIconPeer peer = this.peer;
    if (peer != null) {
        peer.updateImage();
    }
}
 
源代码22 项目: jdk1.8-source-analysis   文件: TrayIcon.java
/**
 * Sets the tooltip string for this <code>TrayIcon</code>. The
 * tooltip is displayed automatically when the mouse hovers over
 * the icon.  Setting the tooltip to <code>null</code> removes any
 * tooltip text.
 *
 * When displayed, the tooltip string may be truncated on some platforms;
 * the number of characters that may be displayed is platform-dependent.
 *
 * @param tooltip the string for the tooltip; if the value is
 * <code>null</code> no tooltip is shown
 * @see #getToolTip
 */
public void setToolTip(String tooltip) {
    this.tooltip = tooltip;

    TrayIconPeer peer = this.peer;
    if (peer != null) {
        peer.setToolTip(tooltip);
    }
}
 
源代码23 项目: jdk1.8-source-analysis   文件: TrayIcon.java
/**
 * Sets the auto-size property.  Auto-size determines whether the
 * tray image is automatically sized to fit the space allocated
 * for the image on the tray.  By default, the auto-size property
 * is set to <code>false</code>.
 *
 * <p> If auto-size is <code>false</code>, and the image size
 * doesn't match the tray icon space, the image is painted as-is
 * inside that space &#151; if larger than the allocated space, it will
 * be cropped.
 *
 * <p> If auto-size is <code>true</code>, the image is stretched or shrunk to
 * fit the tray icon space.
 *
 * @param autosize <code>true</code> to auto-size the image,
 * <code>false</code> otherwise
 * @see #isImageAutoSize
 */
public void setImageAutoSize(boolean autosize) {
    this.autosize = autosize;

    TrayIconPeer peer = this.peer;
    if (peer != null) {
        peer.updateImage();
    }
}
 
源代码24 项目: jdk1.8-source-analysis   文件: TrayIcon.java
/**
 * Displays a popup message near the tray icon.  The message will
 * disappear after a time or if the user clicks on it.  Clicking
 * on the message may trigger an {@code ActionEvent}.
 *
 * <p>Either the caption or the text may be <code>null</code>, but an
 * <code>NullPointerException</code> is thrown if both are
 * <code>null</code>.
 *
 * When displayed, the caption or text strings may be truncated on
 * some platforms; the number of characters that may be displayed is
 * platform-dependent.
 *
 * <p><strong>Note:</strong> Some platforms may not support
 * showing a message.
 *
 * @param caption the caption displayed above the text, usually in
 * bold; may be <code>null</code>
 * @param text the text displayed for the particular message; may be
 * <code>null</code>
 * @param messageType an enum indicating the message type
 * @throws NullPointerException if both <code>caption</code>
 * and <code>text</code> are <code>null</code>
 */
public void displayMessage(String caption, String text, MessageType messageType) {
    if (caption == null && text == null) {
        throw new NullPointerException("displaying the message with both caption and text being null");
    }

    TrayIconPeer peer = this.peer;
    if (peer != null) {
        peer.displayMessage(caption, text, messageType.name());
    }
}
 
源代码25 项目: dragonwell8_jdk   文件: TrayIcon.java
/**
 * Sets the image for this <code>TrayIcon</code>.  The previous
 * tray icon image is discarded without calling the {@link
 * java.awt.Image#flush} method &#151; you will need to call it
 * manually.
 *
 * <p> If the image represents an animated image, it will be
 * animated automatically.
 *
 * <p> See the {@link #setImageAutoSize(boolean)} property for
 * details on the size of the displayed image.
 *
 * <p> Calling this method with the same image that is currently
 * being used has no effect.
 *
 * @throws NullPointerException if <code>image</code> is <code>null</code>
 * @param image the non-null <code>Image</code> to be used
 * @see #getImage
 * @see Image
 * @see SystemTray#add(TrayIcon)
 * @see TrayIcon#TrayIcon(Image, String)
 */
public void setImage(Image image) {
    if (image == null) {
        throw new NullPointerException("setting null Image");
    }
    this.image = image;

    TrayIconPeer peer = this.peer;
    if (peer != null) {
        peer.updateImage();
    }
}
 
源代码26 项目: dragonwell8_jdk   文件: TrayIcon.java
/**
 * Sets the tooltip string for this <code>TrayIcon</code>. The
 * tooltip is displayed automatically when the mouse hovers over
 * the icon.  Setting the tooltip to <code>null</code> removes any
 * tooltip text.
 *
 * When displayed, the tooltip string may be truncated on some platforms;
 * the number of characters that may be displayed is platform-dependent.
 *
 * @param tooltip the string for the tooltip; if the value is
 * <code>null</code> no tooltip is shown
 * @see #getToolTip
 */
public void setToolTip(String tooltip) {
    this.tooltip = tooltip;

    TrayIconPeer peer = this.peer;
    if (peer != null) {
        peer.setToolTip(tooltip);
    }
}
 
源代码27 项目: jdk-1.7-annotated   文件: TrayIcon.java
/**
 * Sets the tooltip string for this <code>TrayIcon</code>. The
 * tooltip is displayed automatically when the mouse hovers over
 * the icon.  Setting the tooltip to <code>null</code> removes any
 * tooltip text.
 *
 * When displayed, the tooltip string may be truncated on some platforms;
 * the number of characters that may be displayed is platform-dependent.
 *
 * @param tooltip the string for the tooltip; if the value is
 * <code>null</code> no tooltip is shown
 * @see #getToolTip
 */
public void setToolTip(String tooltip) {
    this.tooltip = tooltip;

    TrayIconPeer peer = this.peer;
    if (peer != null) {
        peer.setToolTip(tooltip);
    }
}
 
源代码28 项目: dragonwell8_jdk   文件: TrayIcon.java
/**
 * Displays a popup message near the tray icon.  The message will
 * disappear after a time or if the user clicks on it.  Clicking
 * on the message may trigger an {@code ActionEvent}.
 *
 * <p>Either the caption or the text may be <code>null</code>, but an
 * <code>NullPointerException</code> is thrown if both are
 * <code>null</code>.
 *
 * When displayed, the caption or text strings may be truncated on
 * some platforms; the number of characters that may be displayed is
 * platform-dependent.
 *
 * <p><strong>Note:</strong> Some platforms may not support
 * showing a message.
 *
 * @param caption the caption displayed above the text, usually in
 * bold; may be <code>null</code>
 * @param text the text displayed for the particular message; may be
 * <code>null</code>
 * @param messageType an enum indicating the message type
 * @throws NullPointerException if both <code>caption</code>
 * and <code>text</code> are <code>null</code>
 */
public void displayMessage(String caption, String text, MessageType messageType) {
    if (caption == null && text == null) {
        throw new NullPointerException("displaying the message with both caption and text being null");
    }

    TrayIconPeer peer = this.peer;
    if (peer != null) {
        peer.displayMessage(caption, text, messageType.name());
    }
}
 
源代码29 项目: TencentKona-8   文件: TrayIcon.java
/**
 * Sets the image for this <code>TrayIcon</code>.  The previous
 * tray icon image is discarded without calling the {@link
 * java.awt.Image#flush} method &#151; you will need to call it
 * manually.
 *
 * <p> If the image represents an animated image, it will be
 * animated automatically.
 *
 * <p> See the {@link #setImageAutoSize(boolean)} property for
 * details on the size of the displayed image.
 *
 * <p> Calling this method with the same image that is currently
 * being used has no effect.
 *
 * @throws NullPointerException if <code>image</code> is <code>null</code>
 * @param image the non-null <code>Image</code> to be used
 * @see #getImage
 * @see Image
 * @see SystemTray#add(TrayIcon)
 * @see TrayIcon#TrayIcon(Image, String)
 */
public void setImage(Image image) {
    if (image == null) {
        throw new NullPointerException("setting null Image");
    }
    this.image = image;

    TrayIconPeer peer = this.peer;
    if (peer != null) {
        peer.updateImage();
    }
}
 
源代码30 项目: TencentKona-8   文件: TrayIcon.java
/**
 * Sets the tooltip string for this <code>TrayIcon</code>. The
 * tooltip is displayed automatically when the mouse hovers over
 * the icon.  Setting the tooltip to <code>null</code> removes any
 * tooltip text.
 *
 * When displayed, the tooltip string may be truncated on some platforms;
 * the number of characters that may be displayed is platform-dependent.
 *
 * @param tooltip the string for the tooltip; if the value is
 * <code>null</code> no tooltip is shown
 * @see #getToolTip
 */
public void setToolTip(String tooltip) {
    this.tooltip = tooltip;

    TrayIconPeer peer = this.peer;
    if (peer != null) {
        peer.setToolTip(tooltip);
    }
}
 
 类所在包
 同包方法