Examples of RemoveTrailingWhitespaceOperation


Examples of org.eclipse.core.filebuffers.manipulation.RemoveTrailingWhitespaceOperation

* @since 3.1
*/
public class RemoveTrailingWhitespaceHandler extends FileBufferOperationHandler {

  public RemoveTrailingWhitespaceHandler() {
    super(new RemoveTrailingWhitespaceOperation());
  }
View Full Code Here

Examples of org.eclipse.core.filebuffers.manipulation.RemoveTrailingWhitespaceOperation

    if (project != null) {
      updateSaveActionsState(project.getProject());
    }

    if (saveActionsEnabled) {
      RemoveTrailingWhitespaceOperation op = new ExtendedRemoveTrailingWhitespaceOperation(
          saveActionsIgnoreEmptyLines);
      try {
        op.run(FileBuffers.getTextFileBufferManager()
            .getTextFileBuffer(getDocument()), progressMonitor);
      } catch (OperationCanceledException e) {
        Logger.logException(e);
      } catch (CoreException e) {
        Logger.logException(e);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.