クラス FactoryImpl<T,U extends Controller>

すべての実装されたインタフェース:
Iterable<T>, ControllerContext, Factory<T>, ControllerCreatorAware<U>, Unlockable
直系の既知のサブクラス:
ComponentFactoryImpl, PageFactoryImpl, PopupFactoryImpl

public class FactoryImpl<T,U extends Controller> extends AbstractComponent implements Factory<T>, ControllerCreatorAware<U>
  • コンストラクタの詳細

    • FactoryImpl

      public FactoryImpl()
  • メソッドの詳細

    • setControllerCreator

      public void setControllerCreator(ControllerCreator<U> creator)
      定義:
      setControllerCreator インタフェース内 ControllerCreatorAware<T>
    • create

      public T create(Object... arguments)
      インタフェースからコピーされた説明: Factory
      Creates a instance of the class T and returns it.
      定義:
      create インタフェース内 Factory<T>
      パラメータ:
      arguments - factory arguments
      戻り値:
      the new instance of the class T
    • createAsRequested

      public void createAsRequested(FactoryData data)
      定義:
      createAsRequested インタフェース内 ControllerCreatorAware<T>
    • contains

      public boolean contains(Object instance)
      インタフェースからコピーされた説明: Factory
      Returns true if this factory has the specified instance.
      定義:
      contains インタフェース内 Factory<T>
      パラメータ:
      instance - the instance to be checked
      戻り値:
      true if this factory has the specified instance
    • size

      public int size()
      インタフェースからコピーされた説明: Factory
      Returns the number of instances this factory has.
      定義:
      size インタフェース内 Factory<T>
      戻り値:
      the number of instances this factory has.
    • destroy

      public boolean destroy(Object instance)
      インタフェースからコピーされた説明: Factory
      Destroys the specified instance and returns true if succeeded.
      定義:
      destroy インタフェース内 Factory<T>
      パラメータ:
      instance - the instance to be destroyed
      戻り値:
      true if the specified instance is destroyed successfully
    • destroyByData

      public Object destroyByData(FactoryData data)
      定義:
      destroyByData インタフェース内 ControllerCreatorAware<T>
    • clear

      public void clear()
      インタフェースからコピーされた説明: Factory
      Destroys the all instances this factory has.
      定義:
      clear インタフェース内 Factory<T>
    • iterator

      public Iterator<T> iterator()
      インタフェースからコピーされた説明: Factory
      Returns the iterator over instances this factory has.
      定義:
      iterator インタフェース内 Factory<T>
      定義:
      iterator インタフェース内 Iterable<T>
    • get

      public T get(int index)
      インタフェースからコピーされた説明: Factory
      Returns the instance at the specified index.
      定義:
      get インタフェース内 Factory<T>
      パラメータ:
      index - index of the instance
      戻り値:
      the instance at the specified index
    • isEmpty

      public boolean isEmpty()
      インタフェースからコピーされた説明: Factory
      Returns true if this factory is empty.
      定義:
      isEmpty インタフェース内 Factory<T>
      戻り値:
      true if this factory is empty
    • indexOf

      public int indexOf(T instance)
      インタフェースからコピーされた説明: Factory
      Returns the index of the specified instance.
      定義:
      indexOf インタフェース内 Factory<T>
      パラメータ:
      instance - instance to search for
      戻り値:
      the index of the specified instance or -1 if this factory does not contain the specified instance
    • remove

      public T remove(int index)
      インタフェースからコピーされた説明: Factory
      Removes the instance at the specified index.
      定義:
      remove インタフェース内 Factory<T>
      パラメータ:
      index - index of the instance
      戻り値:
      the instance at the specified index