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

org.nakedobjects.metamodel.specloader.SpecificationLoader Maven / Gradle / Ivy

The newest version!
package org.nakedobjects.metamodel.specloader;

import java.util.List;

import org.nakedobjects.metamodel.commons.component.ApplicationScopedComponent;
import org.nakedobjects.metamodel.commons.component.Injectable;
import org.nakedobjects.metamodel.commons.debug.DebugInfo;
import org.nakedobjects.metamodel.spec.NakedObjectSpecification;


public interface SpecificationLoader extends ApplicationScopedComponent, Injectable, DebugInfo {

    NakedObjectSpecification[] allSpecifications();

    /**
     * @see #loadSpecification(String)
     */
    NakedObjectSpecification loadSpecification(Class cls);

    /**
     * Return the specification for the specified class of object.
     * 
     * 

* It is possible for this method to return null, for example if the configured * {@link #getClassSubstitutor()} has filtered out the class. */ NakedObjectSpecification loadSpecification(String fullyQualifiedClassName); /** * Whether this class has been loaded. */ boolean loaded(Class cls); /** * @see #loaded(Class). */ boolean loaded(String fullyQualifiedClassName); /** * Specify the classes of the services to pro-actively prime the cache. */ void setServiceClasses(List> serviceClasses); } // Copyright (c) Naked Objects Group Ltd.





© 2015 - 2024 Weber Informatics LLC | Privacy Policy