comparison src/org/dancres/blitz/EntryChit.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;
2
3 import java.io.Serializable;
4
5 import org.dancres.blitz.mangler.MangledEntry;
6
7 /**
8 Holds the packaged Entry together with the space-global identifier it's
9 associated with.
10 */
11 public class EntryChit implements Serializable {
12 private MangledEntry theEntry;
13 private Object theCookie;
14
15 EntryChit(MangledEntry anEntry, SpaceEntryUID aCookie) {
16 theEntry = anEntry;
17 theCookie = aCookie;
18 }
19
20 public Object getCookie() {
21 return theCookie;
22 }
23
24 public MangledEntry getEntry() {
25 return theEntry;
26 }
27 }