You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

WorkingTreeModifiedListener.java 912B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * Copyright (C) 2017, Thomas Wolf <thomas.wolf@paranor.ch> and others
  3. *
  4. * This program and the accompanying materials are made available under the
  5. * terms of the Eclipse Distribution License v. 1.0 which is available at
  6. * https://www.eclipse.org/org/documents/edl-v10.php.
  7. *
  8. * SPDX-License-Identifier: BSD-3-Clause
  9. */
  10. package org.eclipse.jgit.events;
  11. /**
  12. * Receives {@link org.eclipse.jgit.events.WorkingTreeModifiedEvent}s, which are
  13. * fired whenever a {@link org.eclipse.jgit.dircache.DirCacheCheckout} modifies
  14. * (adds/deletes/updates) files in the working tree.
  15. *
  16. * @since 4.9
  17. */
  18. public interface WorkingTreeModifiedListener extends RepositoryListener {
  19. /**
  20. * Respond to working tree modifications.
  21. *
  22. * @param event
  23. * a {@link org.eclipse.jgit.events.WorkingTreeModifiedEvent}
  24. * object.
  25. */
  26. void onWorkingTreeModified(WorkingTreeModifiedEvent event);
  27. }