类javax.swing.text.PlainView源码实例Demo

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

源代码1 项目: netbeans   文件: OutputEditorKit.java
public View create(Element element) {
    return (element instanceof OutputDocument.RootElement)
           ? new OutputView(element)
           : new PlainView(element);
}
 
源代码2 项目: visualvm   文件: OQLEditorComponent.java
public View create(Element elem) { return new PlainView(elem); } 
源代码3 项目: visualvm   文件: REditorComponent.java
public View create(Element elem) { return new PlainView(elem); } 
 类所在包
 类方法
 同包方法