Package nf.co.haxter.gui.extcomponents

Examples of nf.co.haxter.gui.extcomponents.TextLineNumber


    panel.add(panelMethodCode, BorderLayout.CENTER);
    panelMethodCode.setLayout(new BorderLayout(0, 0));
   
    textAreaCodeEditor = new JTextArea();
    JScrollPane scrollPane = new JScrollPane(textAreaCodeEditor);
    scrollPane.setRowHeaderView(new TextLineNumber(textAreaCodeEditor));
    panelMethodCode.add(scrollPane, BorderLayout.CENTER);
   
    panelCodeEditorNorth = new JPanel();
    scrollPane.setColumnHeaderView(panelCodeEditorNorth);
    panelCodeEditorNorth.setLayout(new BorderLayout(0, 0));
View Full Code Here

TOP

Related Classes of nf.co.haxter.gui.extcomponents.TextLineNumber

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.