// Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package org.apache.tapestry5.ioc; /** * The source for the module instance needed by any service builders, service contributors and service decorators that * are mapped to instance methods. * * Allows the creation of the module instance to be deferred until actually needed; in practical terms, when the * builder/decorator/contributor is a <em>static</em> method on the module builder class, then a module instance is not * needed. This allows Tapestry IOC to work around a tricky chicken-and-the-egg problem, whereby the constructor of a * module instance requires contributions that originate in the same module. * * The term "module builder" has been deprecated; the current term is "module class", but this interface is left as-is * for backwards compatibility. */ public interface ModuleBuilderSource { /** * Returns the instantiated version of the Tapestry IoC module class. */ Object getModuleBuilder(); }