パッケージ org.wcardinal.controller

インタフェース Factory<T>

型パラメータ:
T - class to be created/destroyed dynamically
すべてのスーパーインタフェース:
ControllerContext, Iterable<T>, Unlockable
既知のサブインタフェースのリスト:
ComponentFactory<T>, PageFactory<T>, PopupFactory<T>
既知の実装クラスのリスト:
ComponentFactoryImpl, FactoryImpl, PageFactoryImpl, PopupFactoryImpl

public interface Factory<T> extends Iterable<T>, ControllerContext
A factory that creates/destroys the specified class T dynamically.
  • メソッドの詳細

    • create

      @ThreadSafe T create(Object... arguments)
      Creates a instance of the class T and returns it.
      パラメータ:
      arguments - factory arguments
      戻り値:
      the new instance of the class T
    • contains

      @ThreadSafe boolean contains(Object instance)
      Returns true if this factory has the specified instance.
      パラメータ:
      instance - the instance to be checked
      戻り値:
      true if this factory has the specified instance
    • size

      @ThreadSafe int size()
      Returns the number of instances this factory has.
      戻り値:
      the number of instances this factory has.
    • get

      @ThreadSafe T get(int index)
      Returns the instance at the specified index.
      パラメータ:
      index - index of the instance
      戻り値:
      the instance at the specified index
    • isEmpty

      @ThreadSafe boolean isEmpty()
      Returns true if this factory is empty.
      戻り値:
      true if this factory is empty
    • indexOf

      @ThreadSafe int indexOf(T instance)
      Returns the index of the specified instance.
      パラメータ:
      instance - instance to search for
      戻り値:
      the index of the specified instance or -1 if this factory does not contain the specified instance
    • remove

      @ThreadSafe T remove(int index)
      Removes the instance at the specified index.
      パラメータ:
      index - index of the instance
      戻り値:
      the instance at the specified index
    • destroy

      @ThreadSafe boolean destroy(Object instance)
      Destroys the specified instance and returns true if succeeded.
      パラメータ:
      instance - the instance to be destroyed
      戻り値:
      true if the specified instance is destroyed successfully
    • clear

      @ThreadSafe void clear()
      Destroys the all instances this factory has.
    • iterator

      @ThreadSafe Iterator<T> iterator()
      Returns the iterator over instances this factory has.
      定義:
      iterator インタフェース内 Iterable<T>