1 package net.sf.jpkgmk.pkgmap;
2
3
4 import net.sf.jpkgmk.LineProvider;
5
6 /**
7 * @author gommma (gommma AT users.sourceforge.net)
8 * @author Last changed by: $Author: gommma $
9 * @version $Revision: 2 $ $Date: 2008-08-20 21:14:19 +0200 (Mi, 20 Aug 2008) $
10 * @since 1.0
11 */
12 public interface PkgMapEntry extends LineProvider
13 {
14 /**
15 * @return Returns the type of this entry
16 */
17 public PkgMapEntryType getType();
18
19 /**
20 * @param obj
21 * @param ignoreLastModified whether or not the "lastModified" field should be ignored when checking for equality
22 * @return
23 */
24 public boolean equals(Object obj, boolean ignoreLastModified);
25
26 }