comparison src/org/tmatesoft/hg/repo/HgStatusInspector.java @ 429:cd658b24a620

FIXMEs: javadoc, proper use of constants
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Thu, 29 Mar 2012 18:29:03 +0200
parents 150500515714
children 6865eb742883
comparison
equal deleted inserted replaced
428:ead6c67f3319 429:cd658b24a620
1 /* 1 /*
2 * Copyright (c) 2010-2011 TMate Software Ltd 2 * Copyright (c) 2010-2012 TMate Software Ltd
3 * 3 *
4 * This program is free software; you can redistribute it and/or modify 4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by 5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 2 of the License. 6 * the Free Software Foundation; version 2 of the License.
7 * 7 *
14 * the terms of a license other than GNU General Public License 14 * the terms of a license other than GNU General Public License
15 * contact TMate Software at support@hg4j.com 15 * contact TMate Software at support@hg4j.com
16 */ 16 */
17 package org.tmatesoft.hg.repo; 17 package org.tmatesoft.hg.repo;
18 18
19 import org.tmatesoft.hg.internal.Callback;
19 import org.tmatesoft.hg.util.Path; 20 import org.tmatesoft.hg.util.Path;
20 21
21 /** 22 /**
22 * Callback to get file status information 23 * Callback to get file status information
23 * 24 *
24 * @author Artem Tikhomirov 25 * @author Artem Tikhomirov
25 * @author TMate Software Ltd. 26 * @author TMate Software Ltd.
26 */ 27 */
28 @Callback
27 public interface HgStatusInspector { 29 public interface HgStatusInspector {
28 void modified(Path fname); 30 void modified(Path fname);
29 void added(Path fname); 31 void added(Path fname);
30 /** 32 /**
31 * This method is invoked for files that we added as a result of a copy/move operation, and it's the sole 33 * This method is invoked for files that we added as a result of a copy/move operation, and it's the sole