An ErrorStrip
can be added to a UI like so:
textArea = createTextArea(); scrollPane = new RTextScrollPane(textArea, true); ErrorStrip es = new ErrorStrip(textArea); JPanel temp = new JPanel(new BorderLayout()); temp.add(scrollPane); temp.add(es, BorderLayout.LINE_END);@author Robert Futrell @version 0.1
|
|