public interface BeanBuilderFactory
Definition of an interface for querying new
objects.
BeanBuilder
This interface provides a generic means for obtaining a new
BeanBuilder
instance that can be used for processing a script
with bean definitions. It is a typical factory interface decoupling its
clients from the concrete builder implementation.
Note: An implementation is intended to be thread-safe, so that it
can be shared between multiple threads. For the returned
BeanBuilder
instances however, this is not the case. They
should be used by a single thread only.
Modifier and Type | Method and Description |
---|---|
BeanBuilder |
getBeanBuilder()
Returns a
BeanBuilder object for processing a script with
bean definitions. |
BeanBuilder getBeanBuilder() throws BuilderException
BeanBuilder
object for processing a script with
bean definitions. The returned object is fully initialized and can be
used immediately.BeanBuilder
instanceBuilderException
- if an error occursCopyright © 2016 The JGUIraffe Team. All rights reserved.