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

org.nakedobjects.metamodel.examples.facets.namefile.NameFileProgModelFacets Maven / Gradle / Ivy

package org.nakedobjects.metamodel.examples.facets.namefile;

import org.nakedobjects.metamodel.facets.FacetFactory;
import org.nakedobjects.metamodel.specloader.progmodelfacets.ProgrammingModelFacets;
import org.nakedobjects.metamodel.specloader.progmodelfacets.ProgrammingModelFacetsJava5;


/**
 * Implementation of {@link ProgrammingModelFacets} that additionally just installs support for
 * {@link NameFileFacet name files}.
 * 
 * 

* This implementation is really provided only as an example. Typically you would provide your own * {@link ProgrammingModelFacets} implementation that installs other additional {@link FacetFactory facet * factories} ass required for your programming model. */ public class NameFileProgModelFacets extends ProgrammingModelFacetsJava5 { public NameFileProgModelFacets() { addFactory(NameFileFacetFactory.class); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy