FileDocCategorySizeDatePackage
MyClass.javaAPI DocExample2447Wed Apr 19 11:20:24 BST 2000examples.activation

MyClass

public class MyClass extends Object implements examples.activation.AnotherRemoteInterface

Fields Summary
private String
result
Constructors Summary
public MyClass(ActivationID id, MarshalledObject data)


    // The constructor for activation and export; this constructor is
    // called by the method ActivationInstantiator.newInstance during
    // activation, to construct the object.
    //
         
	  

	// Register the object with the activation system
	// then export it on an anonymous port
	//
	Activatable.exportObject(this, id, 0);
    
Methods Summary
public java.lang.StringcalltheServer(java.lang.String takeThis)


	result = takeThis + "I'm here!";
	return result;