List of usage examples for javax.swing JTextArea getAccessibleContext
@BeanProperty(bound = false)
public AccessibleContext getAccessibleContext()
From source file:com.eviware.soapui.support.components.SimpleForm.java
public JTextArea appendTextArea(String label, String tooltip) { JTextArea textArea = new JUndoableTextArea(); textArea.setColumns(defaultTextAreaColumns); textArea.setRows(defaultTextAreaRows); textArea.setAutoscrolls(true);// w ww.j a v a2 s .c om textArea.add(new JScrollPane()); setToolTip(textArea, tooltip); textArea.getAccessibleContext().setAccessibleDescription(tooltip); JTextComponentPopupMenu.add(textArea); append(label, new JScrollPane(textArea)); return textArea; }