FileDocCategorySizeDatePackage
ContextList.javaAPI DocExample669Thu Nov 08 00:22:50 GMT 2001com.ora.rmibook.chapter15

ContextList

public class ContextList extends SerializableList

Fields Summary
Constructors Summary
private ContextList()

/* here so we can deserialize */
    
public ContextList(Collection components)

        super (components);
    
Methods Summary
protected booleancontainerIsOfSameType(java.lang.Object object)

        return (object instanceof ContextList);
    
protected booleanequalObjects(java.lang.Object firstObject, java.lang.Object secondObject)

        Context firstContext = (Context) firstObject;
        Context secondContext = (Context) secondObject;

        return firstContext.equals(secondContext);