We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a56ce9 commit 2e32c56Copy full SHA for 2e32c56
src/main/java/org/scijava/ui/swing/console/SwingConsolePane.java
@@ -92,6 +92,16 @@ public void setWindow(final Component window) {
92
this.window = window;
93
}
94
95
+ public JTextPane getTextPane() {
96
+ if (consolePanel == null) initConsolePanel();
97
+ return textPane;
98
+ }
99
+
100
+ public JScrollPane getScrollPane() {
101
102
+ return scrollPane;
103
104
105
// -- ConsolePane methods --
106
107
@Override
0 commit comments