view examples/helloworld/TestEntry.java @ 35:6f68e94c1fb8 default tip

Add CondensedStats monitoring utility, equivalent to vmstat
author Dominic Cleal <dominic-cleal@cdo2.com>
date Thu, 05 Aug 2010 11:07:25 +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;
    }
}