パッケージ 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
A factory that creates/destroys the specified class
T
dynamically.-
メソッドの概要
修飾子とタイプメソッド説明void
clear()
Destroys the all instances this factory has.boolean
Returns true if this factory has the specified instance.Creates a instance of the class T and returns it.boolean
Destroys the specified instance and returns true if succeeded.get
(int index) Returns the instance at the specified index.int
Returns the index of the specified instance.boolean
isEmpty()
Returns true if this factory is empty.iterator()
Returns the iterator over instances this factory has.remove
(int index) Removes the instance at the specified index.int
size()
Returns the number of instances this factory has.インタフェースから継承されたメソッド org.wcardinal.controller.ControllerContext
cancel, cancel, cancel, cancelAll, execute, execute, execute, getActivePage, getAttributes, getFactoryParameters, getLocale, getLocales, getName, getParameter, getParameterMap, getParameters, getParent, getParentAsFactory, getParents, getPrincipal, getRemoteAddress, getScheduler, getSessionId, getSubSessionId, hide, interval, interval, interval, interval, isCanceled, isHeadCall, isHidden, isHistorical, isLocked, isLockedByCurrentThread, isNonNull, isReadOnly, isShown, lock, notify, notifyAsync, show, timeout, timeout, timeout, trigger, triggerAndWait, triggerDirect, tryLock, tryLock, unlock
インタフェースから継承されたメソッド java.lang.Iterable
forEach, spliterator
-
メソッドの詳細
-
create
Creates a instance of the class T and returns it.- パラメータ:
arguments
- factory arguments- 戻り値:
- the new instance of the class T
-
contains
Returns true if this factory has the specified instance.- パラメータ:
instance
- the instance to be checked- 戻り値:
- true if this factory has the specified instance
-
size
Returns the number of instances this factory has.- 戻り値:
- the number of instances this factory has.
-
get
Returns the instance at the specified index.- パラメータ:
index
- index of the instance- 戻り値:
- the instance at the specified index
-
isEmpty
Returns true if this factory is empty.- 戻り値:
- true if this factory is empty
-
indexOf
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
Removes the instance at the specified index.- パラメータ:
index
- index of the instance- 戻り値:
- the instance at the specified index
-
destroy
Destroys the specified instance and returns true if succeeded.- パラメータ:
instance
- the instance to be destroyed- 戻り値:
- true if the specified instance is destroyed successfully
-
clear
Destroys the all instances this factory has. -
iterator
Returns the iterator over instances this factory has.
-