view examples/helloworld/TestEntry.java @ 28:bc579f24eaf5

Added tag Version 2.1 for changeset 511648fa4d64
author Dan Creswell <dan.creswell@gmail.com>
date Mon, 04 Jan 2010 13:01:11 +0000
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;
    }
}