All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.nakedobjects.metamodel.facets.actions.invoke.ActionInvocationFacet Maven / Gradle / Ivy

The newest version!
package org.nakedobjects.metamodel.facets.actions.invoke;

import org.nakedobjects.metamodel.adapter.NakedObject;
import org.nakedobjects.metamodel.facets.Facet;
import org.nakedobjects.metamodel.spec.NakedObjectSpecification;


/**
 * Represents the mechanism by which the action should be invoked.
 * 
 * 

* In the standard Naked Objects Programming Model, corresponds to invoking the actual action method itself (a * public method that does not represent a property, a collection or any of the supporting methods). */ public interface ActionInvocationFacet extends Facet { public NakedObject invoke(NakedObject target, NakedObject[] parameters); public NakedObjectSpecification getReturnType(); public NakedObjectSpecification getOnType(); } // Copyright (c) Naked Objects Group Ltd.





© 2015 - 2024 Weber Informatics LLC | Privacy Policy