comparison src/org/dancres/blitz/entry/SearchOfferImpl.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 /**
6 @see org.dancres.blitz.disk.SearchOffer
7 */
8 class SearchOfferImpl implements SearchOffer {
9 private OpInfo theInfo;
10 private MangledEntry theEntry;
11
12 SearchOfferImpl(MangledEntry anEntry, OpInfo anInfo) {
13 theInfo = anInfo;
14 theEntry = anEntry;
15 }
16
17 public MangledEntry getEntry() {
18 return theEntry;
19 }
20
21 public OpInfo getInfo() {
22 return theInfo;
23 }
24 }