titleField = new JTextField();
titleField.getDocument().addDocumentListener(new StateListener());
titleField.setBackground(STAMP_NAME_FIELD_BACKGROUND);
titleField.setOpaque(false);
HorizontalPanel titlePanel = new HorizontalPanel();
titlePanel.setBottomLineAlpha(0.5f);
JLabel label = new JLabel("スタンプ名:");
titlePanel.add(label);
titlePanel.add(titleField);
MyJScrollPane scroller = new MyJScrollPane(textPane);
scroller.setVerticalScrollBarPolicy(MyJScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED);
scroller.setHorizontalScrollBarPolicy(MyJScrollPane.HORIZONTAL_SCROLLBAR_NEVER);