import java.util.ArrayList;
import java.util.List;
-public class CCCreateAnswerPlaceholderPanel extends JPanel {
+public class CCCreateAnswerPlaceholderPanel {
private static String ourFirstHintText = "Type here to add hint";
private JPanel myPanel;
}};
public CCCreateAnswerPlaceholderPanel() {
- super(new BorderLayout());
- add(myPanel, BorderLayout.CENTER);
-
myHintTextArea.setLineWrap(true);
myHintTextArea.setWrapStyleWord(true);
myPlaceholderTextArea.setBorder(BorderFactory.createLineBorder(JBColor.border()));
updateHintNumberLabel();
}
+ public JPanel getMailPanel() {
+ return myPanel;
+ }
+
private class GoForward extends AnAction {
public GoForward() {