esoe
3 years ago
4 changed files with 26 additions and 4 deletions
@ -1,7 +1,26 @@ |
|||||||
package ru.egspt.moodle.panel; |
package ru.egspt.moodle.panel; |
||||||
|
|
||||||
|
import java.awt.BorderLayout; |
||||||
|
|
||||||
import javax.swing.JPanel; |
import javax.swing.JPanel; |
||||||
|
import javax.swing.JScrollPane; |
||||||
|
import javax.swing.JTextArea; |
||||||
|
|
||||||
|
import ru.egspt.moodle.Base; |
||||||
|
|
||||||
public class UserByTagPane extends JPanel{ |
public class UserByTagPane extends JPanel{ |
||||||
|
JTextArea ta; |
||||||
|
JScrollPane sp; |
||||||
|
|
||||||
|
UserByTagPane(Base base){ |
||||||
|
String text = "s;dfkjg s;dfhg so soigspoig psoigspfg ps sigh sp oigpssp oigspih soupsht"; |
||||||
|
ta = new JTextArea(); |
||||||
|
ta.setText(text); |
||||||
|
ta.append(text); |
||||||
|
ta.append(text);ta.append(text);ta.append(text);ta.append(text);ta.append(text); |
||||||
|
|
||||||
|
sp = new JScrollPane(ta); |
||||||
|
setLayout(new BorderLayout()); |
||||||
|
add(sp, BorderLayout.CENTER); |
||||||
|
} |
||||||
} |
} |
||||||
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in new issue