comparison src/org/dancres/blitz/entry/EntrySleeve.java @ 0:3dc0c5604566

Initial checkin of blitz 2.0 fcs - no installer yet.
author Dan Creswell <dan.creswell@gmail.com>
date Sat, 21 Mar 2009 11:00:06 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:3dc0c5604566
1 package org.dancres.blitz.entry;
2
3 import org.dancres.blitz.mangler.MangledEntry;
4
5 import org.dancres.blitz.oid.OID;
6
7 import org.dancres.blitz.lease.LeasedResource;
8
9 /**
10 All MangledEntry instances written to Blitz are wrapped in an EntrySleeve.
11 EntrySleeves are uniquely identified by their type and Uid.
12 */
13 public interface EntrySleeve extends LeasedResource {
14 public OID getOID();
15 public String getType();
16 public MangledEntry getEntry();
17 public boolean isDeleted();
18 public int getHashCodeForField(int anOffset);
19 }