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

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

源代码1 项目: jdk1.8-source-analysis   文件: TextArea.java
/**
 * @deprecated As of JDK version 1.1,
 * replaced by <code>insert(String, int)</code>.
 */
@Deprecated
public synchronized void insertText(String str, int pos) {
    TextAreaPeer peer = (TextAreaPeer)this.peer;
    if (peer != null) {
        peer.insert(str, pos);
    } else {
        text = text.substring(0, pos) + str + text.substring(pos);
    }
}
 
源代码2 项目: jdk1.8-source-analysis   文件: TextArea.java
/**
 * @deprecated As of JDK version 1.1,
 * replaced by <code>replaceRange(String, int, int)</code>.
 */
@Deprecated
public synchronized void replaceText(String str, int start, int end) {
    TextAreaPeer peer = (TextAreaPeer)this.peer;
    if (peer != null) {
        peer.replaceRange(str, start, end);
    } else {
        text = text.substring(0, start) + str + text.substring(end);
    }
}
 
源代码3 项目: jdk1.8-source-analysis   文件: TextArea.java
/**
 * @deprecated As of JDK version 1.1,
 * replaced by <code>getPreferredSize(int, int)</code>.
 */
@Deprecated
public Dimension preferredSize(int rows, int columns) {
    synchronized (getTreeLock()) {
        TextAreaPeer peer = (TextAreaPeer)this.peer;
        return (peer != null) ?
                   peer.getPreferredSize(rows, columns) :
                   super.preferredSize();
    }
}
 
源代码4 项目: jdk1.8-source-analysis   文件: TextArea.java
/**
 * @deprecated As of JDK version 1.1,
 * replaced by <code>getMinimumSize(int, int)</code>.
 */
@Deprecated
public Dimension minimumSize(int rows, int columns) {
    synchronized (getTreeLock()) {
        TextAreaPeer peer = (TextAreaPeer)this.peer;
        return (peer != null) ?
                   peer.getMinimumSize(rows, columns) :
                   super.minimumSize();
    }
}
 
源代码5 项目: dragonwell8_jdk   文件: TextArea.java
/**
 * @deprecated As of JDK version 1.1,
 * replaced by <code>insert(String, int)</code>.
 */
@Deprecated
public synchronized void insertText(String str, int pos) {
    TextAreaPeer peer = (TextAreaPeer)this.peer;
    if (peer != null) {
        peer.insert(str, pos);
    }
    text = text.substring(0, pos) + str + text.substring(pos);
}
 
源代码6 项目: dragonwell8_jdk   文件: TextArea.java
/**
 * @deprecated As of JDK version 1.1,
 * replaced by <code>replaceRange(String, int, int)</code>.
 */
@Deprecated
public synchronized void replaceText(String str, int start, int end) {
    TextAreaPeer peer = (TextAreaPeer)this.peer;
    if (peer != null) {
        peer.replaceRange(str, start, end);
    }
    text = text.substring(0, start) + str + text.substring(end);
}
 
源代码7 项目: dragonwell8_jdk   文件: TextArea.java
/**
 * @deprecated As of JDK version 1.1,
 * replaced by <code>getPreferredSize(int, int)</code>.
 */
@Deprecated
public Dimension preferredSize(int rows, int columns) {
    synchronized (getTreeLock()) {
        TextAreaPeer peer = (TextAreaPeer)this.peer;
        return (peer != null) ?
                   peer.getPreferredSize(rows, columns) :
                   super.preferredSize();
    }
}
 
源代码8 项目: dragonwell8_jdk   文件: TextArea.java
/**
 * @deprecated As of JDK version 1.1,
 * replaced by <code>getMinimumSize(int, int)</code>.
 */
@Deprecated
public Dimension minimumSize(int rows, int columns) {
    synchronized (getTreeLock()) {
        TextAreaPeer peer = (TextAreaPeer)this.peer;
        return (peer != null) ?
                   peer.getMinimumSize(rows, columns) :
                   super.minimumSize();
    }
}
 
源代码9 项目: TencentKona-8   文件: TextArea.java
/**
 * @deprecated As of JDK version 1.1,
 * replaced by <code>insert(String, int)</code>.
 */
@Deprecated
public synchronized void insertText(String str, int pos) {
    TextAreaPeer peer = (TextAreaPeer)this.peer;
    if (peer != null) {
        peer.insert(str, pos);
    }
    text = text.substring(0, pos) + str + text.substring(pos);
}
 
源代码10 项目: TencentKona-8   文件: TextArea.java
/**
 * @deprecated As of JDK version 1.1,
 * replaced by <code>replaceRange(String, int, int)</code>.
 */
@Deprecated
public synchronized void replaceText(String str, int start, int end) {
    TextAreaPeer peer = (TextAreaPeer)this.peer;
    if (peer != null) {
        peer.replaceRange(str, start, end);
    }
    text = text.substring(0, start) + str + text.substring(end);
}
 
源代码11 项目: TencentKona-8   文件: TextArea.java
/**
 * @deprecated As of JDK version 1.1,
 * replaced by <code>getPreferredSize(int, int)</code>.
 */
@Deprecated
public Dimension preferredSize(int rows, int columns) {
    synchronized (getTreeLock()) {
        TextAreaPeer peer = (TextAreaPeer)this.peer;
        return (peer != null) ?
                   peer.getPreferredSize(rows, columns) :
                   super.preferredSize();
    }
}
 
源代码12 项目: TencentKona-8   文件: TextArea.java
/**
 * @deprecated As of JDK version 1.1,
 * replaced by <code>getMinimumSize(int, int)</code>.
 */
@Deprecated
public Dimension minimumSize(int rows, int columns) {
    synchronized (getTreeLock()) {
        TextAreaPeer peer = (TextAreaPeer)this.peer;
        return (peer != null) ?
                   peer.getMinimumSize(rows, columns) :
                   super.minimumSize();
    }
}
 
源代码13 项目: jdk8u60   文件: TextArea.java
/**
 * @deprecated As of JDK version 1.1,
 * replaced by <code>insert(String, int)</code>.
 */
@Deprecated
public synchronized void insertText(String str, int pos) {
    TextAreaPeer peer = (TextAreaPeer)this.peer;
    if (peer != null) {
        peer.insert(str, pos);
    } else {
        text = text.substring(0, pos) + str + text.substring(pos);
    }
}
 
源代码14 项目: jdk8u60   文件: TextArea.java
/**
 * @deprecated As of JDK version 1.1,
 * replaced by <code>replaceRange(String, int, int)</code>.
 */
@Deprecated
public synchronized void replaceText(String str, int start, int end) {
    TextAreaPeer peer = (TextAreaPeer)this.peer;
    if (peer != null) {
        peer.replaceRange(str, start, end);
    } else {
        text = text.substring(0, start) + str + text.substring(end);
    }
}
 
源代码15 项目: jdk8u60   文件: TextArea.java
/**
 * @deprecated As of JDK version 1.1,
 * replaced by <code>getPreferredSize(int, int)</code>.
 */
@Deprecated
public Dimension preferredSize(int rows, int columns) {
    synchronized (getTreeLock()) {
        TextAreaPeer peer = (TextAreaPeer)this.peer;
        return (peer != null) ?
                   peer.getPreferredSize(rows, columns) :
                   super.preferredSize();
    }
}
 
源代码16 项目: jdk8u60   文件: TextArea.java
/**
 * @deprecated As of JDK version 1.1,
 * replaced by <code>getMinimumSize(int, int)</code>.
 */
@Deprecated
public Dimension minimumSize(int rows, int columns) {
    synchronized (getTreeLock()) {
        TextAreaPeer peer = (TextAreaPeer)this.peer;
        return (peer != null) ?
                   peer.getMinimumSize(rows, columns) :
                   super.minimumSize();
    }
}
 
源代码17 项目: JDKSourceCode1.8   文件: TextArea.java
/**
 * @deprecated As of JDK version 1.1,
 * replaced by <code>insert(String, int)</code>.
 */
@Deprecated
public synchronized void insertText(String str, int pos) {
    TextAreaPeer peer = (TextAreaPeer)this.peer;
    if (peer != null) {
        peer.insert(str, pos);
    }
    text = text.substring(0, pos) + str + text.substring(pos);
}
 
源代码18 项目: JDKSourceCode1.8   文件: TextArea.java
/**
 * @deprecated As of JDK version 1.1,
 * replaced by <code>replaceRange(String, int, int)</code>.
 */
@Deprecated
public synchronized void replaceText(String str, int start, int end) {
    TextAreaPeer peer = (TextAreaPeer)this.peer;
    if (peer != null) {
        peer.replaceRange(str, start, end);
    }
    text = text.substring(0, start) + str + text.substring(end);
}
 
源代码19 项目: JDKSourceCode1.8   文件: TextArea.java
/**
 * @deprecated As of JDK version 1.1,
 * replaced by <code>getPreferredSize(int, int)</code>.
 */
@Deprecated
public Dimension preferredSize(int rows, int columns) {
    synchronized (getTreeLock()) {
        TextAreaPeer peer = (TextAreaPeer)this.peer;
        return (peer != null) ?
                   peer.getPreferredSize(rows, columns) :
                   super.preferredSize();
    }
}
 
源代码20 项目: JDKSourceCode1.8   文件: TextArea.java
/**
 * @deprecated As of JDK version 1.1,
 * replaced by <code>getMinimumSize(int, int)</code>.
 */
@Deprecated
public Dimension minimumSize(int rows, int columns) {
    synchronized (getTreeLock()) {
        TextAreaPeer peer = (TextAreaPeer)this.peer;
        return (peer != null) ?
                   peer.getMinimumSize(rows, columns) :
                   super.minimumSize();
    }
}
 
源代码21 项目: openjdk-jdk8u   文件: TextArea.java
/**
 * @deprecated As of JDK version 1.1,
 * replaced by <code>insert(String, int)</code>.
 */
@Deprecated
public synchronized void insertText(String str, int pos) {
    TextAreaPeer peer = (TextAreaPeer)this.peer;
    if (peer != null) {
        peer.insert(str, pos);
    }
    text = text.substring(0, pos) + str + text.substring(pos);
}
 
源代码22 项目: openjdk-jdk8u   文件: TextArea.java
/**
 * @deprecated As of JDK version 1.1,
 * replaced by <code>replaceRange(String, int, int)</code>.
 */
@Deprecated
public synchronized void replaceText(String str, int start, int end) {
    TextAreaPeer peer = (TextAreaPeer)this.peer;
    if (peer != null) {
        peer.replaceRange(str, start, end);
    }
    text = text.substring(0, start) + str + text.substring(end);
}
 
源代码23 项目: openjdk-jdk8u   文件: TextArea.java
/**
 * @deprecated As of JDK version 1.1,
 * replaced by <code>getPreferredSize(int, int)</code>.
 */
@Deprecated
public Dimension preferredSize(int rows, int columns) {
    synchronized (getTreeLock()) {
        TextAreaPeer peer = (TextAreaPeer)this.peer;
        return (peer != null) ?
                   peer.getPreferredSize(rows, columns) :
                   super.preferredSize();
    }
}
 
源代码24 项目: openjdk-jdk8u   文件: TextArea.java
/**
 * @deprecated As of JDK version 1.1,
 * replaced by <code>getMinimumSize(int, int)</code>.
 */
@Deprecated
public Dimension minimumSize(int rows, int columns) {
    synchronized (getTreeLock()) {
        TextAreaPeer peer = (TextAreaPeer)this.peer;
        return (peer != null) ?
                   peer.getMinimumSize(rows, columns) :
                   super.minimumSize();
    }
}
 
源代码25 项目: 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;
}
 
源代码26 项目: openjdk-jdk8u-backup   文件: TextArea.java
/**
 * @deprecated As of JDK version 1.1,
 * replaced by <code>insert(String, int)</code>.
 */
@Deprecated
public synchronized void insertText(String str, int pos) {
    TextAreaPeer peer = (TextAreaPeer)this.peer;
    if (peer != null) {
        peer.insert(str, pos);
    }
    text = text.substring(0, pos) + str + text.substring(pos);
}
 
源代码27 项目: openjdk-jdk8u-backup   文件: TextArea.java
/**
 * @deprecated As of JDK version 1.1,
 * replaced by <code>replaceRange(String, int, int)</code>.
 */
@Deprecated
public synchronized void replaceText(String str, int start, int end) {
    TextAreaPeer peer = (TextAreaPeer)this.peer;
    if (peer != null) {
        peer.replaceRange(str, start, end);
    }
    text = text.substring(0, start) + str + text.substring(end);
}
 
源代码28 项目: openjdk-jdk8u-backup   文件: TextArea.java
/**
 * @deprecated As of JDK version 1.1,
 * replaced by <code>getPreferredSize(int, int)</code>.
 */
@Deprecated
public Dimension preferredSize(int rows, int columns) {
    synchronized (getTreeLock()) {
        TextAreaPeer peer = (TextAreaPeer)this.peer;
        return (peer != null) ?
                   peer.getPreferredSize(rows, columns) :
                   super.preferredSize();
    }
}
 
源代码29 项目: openjdk-jdk8u-backup   文件: TextArea.java
/**
 * @deprecated As of JDK version 1.1,
 * replaced by <code>getMinimumSize(int, int)</code>.
 */
@Deprecated
public Dimension minimumSize(int rows, int columns) {
    synchronized (getTreeLock()) {
        TextAreaPeer peer = (TextAreaPeer)this.peer;
        return (peer != null) ?
                   peer.getMinimumSize(rows, columns) :
                   super.minimumSize();
    }
}
 
源代码30 项目: jdk8u-jdk   文件: TextArea.java
/**
 * @deprecated As of JDK version 1.1,
 * replaced by <code>insert(String, int)</code>.
 */
@Deprecated
public synchronized void insertText(String str, int pos) {
    TextAreaPeer peer = (TextAreaPeer)this.peer;
    if (peer != null) {
        peer.insert(str, pos);
    }
    text = text.substring(0, pos) + str + text.substring(pos);
}
 
 类所在包
 同包方法