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

org.nakedobjects.metamodel.facets.collections.modify.CollectionAddToFacet Maven / Gradle / Ivy

The newest version!
package org.nakedobjects.metamodel.facets.collections.modify;

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


/**
 * Add object to a collection.
 * 
 * 

* In the standard Naked Objects Programming Model, corresponds to invoking the addToXxx support * method for a collection. */ public interface CollectionAddToFacet extends Facet { public void add(NakedObject inObject, NakedObject value); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy