Package com.intellij.ui

Examples of com.intellij.ui.TextComponentUndoProvider


    final JScrollPane scrollPane = new JScrollPane(myCommentArea);
    scrollPane.setPreferredSize(myCommentArea.getPreferredSize());
    add(scrollPane, BorderLayout.CENTER);
    JComponent separator = SeparatorFactory.createSeparator(VcsBundle.message("label.commit.comment"), myCommentArea);
    add(separator, BorderLayout.NORTH);
    final TextComponentUndoProvider textComponentUndoProvider = new TextComponentUndoProvider(myCommentArea);
    Disposer.register(this, textComponentUndoProvider);
  }
View Full Code Here

TOP

Related Classes of com.intellij.ui.TextComponentUndoProvider

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.