View Javadoc
1   package com.jsql.view.swing.text;
2   
3   /**
4    * Textfield with information text displayed when empty.
5    */
6   public class JTextAreaPlaceholderConsole extends JTextAreaPlaceholder {
7   
8       public JTextAreaPlaceholderConsole(String placeholder) {
9           super(placeholder);
10      }
11  }