/* * $Id: AcceptCapability.java,v 1.2 2006/09/25 08:52:36 acaproni Exp $ * * $Date: 2006/09/25 08:52:36 $ * $Revision: 1.2 $ * $Author: acaproni $ * * Copyright CERN, All Rights Reserved. */ package cern.gp.capabilities; import cern.gp.nodes.GPNode; /** * Capability an object implements so that it can be accepted. * This capability is invoked by the corresponding Action * * @see cern.gp.actions.AcceptAction * @author Vito Baggiolini * @version $Revision: 1.2 $ $Date: 2006/09/25 08:52:36 $ */ public interface AcceptCapability extends Capability { /** * Call to the accept action on the object that implements this capability. * @param node the node representing the bean on which the capability has been activated */ public void accept(GPNode node); }