01: package org.drools.scm;
02:
03: import java.util.Date;
04:
05: public interface ScmEntry {
06: public static final int FILE = 0;
07: public static final int DIRECTORY = 0;
08:
09: String getAuthor();
10:
11: Date getDate();
12:
13: String getName();
14:
15: String getPath();
16:
17: long getRevision();
18:
19: long getSize();
20:
21: public boolean isFile();
22:
23: public boolean isDirectory();
24: }
|