view examples/helloworld/TestEntry.java @ 20:66c7bfc3e89e

Upgrade to BDB JE 3.3.87
author Dan Creswell <dan.creswell@gmail.com>
date Sun, 16 Aug 2009 15:26:33 +0100
parents 3dc0c5604566
children
line wrap: on
line source

package helloworld;

import net.jini.core.entry.Entry;

/**
   Anything you wish to write to a JavaSpace must implement Entry.
   Only fields which are declared public will be stored and these fields
   should not be primitives such as int or long.  See the Entry specification
   for full details.
 */
public class TestEntry implements Entry {
    public String theValue;

    public TestEntry() {
    }

    public TestEntry(String aValue) {
        theValue = aValue;
    }

    public String toString() {
        return "TestEntry: " + theValue;
    }
}