| org.netbeans.modules.xslt.tmap.model.api.TMapComponentContainer
All known Subclasses: org.netbeans.modules.xslt.tmap.model.impl.TMapComponentContainerImpl,
TMapComponentContainer | public interface TMapComponentContainer extends TMapComponent(Code) | | author: Vitaly Bychkov version: 1.0 |
Method Summary | |
int | indexOf(Class<T> type, T component) Returns index of entity in children list with
specified type .
If component is not child of this container then it returns -1.
< Parameters: T - > TMapComponent type. Parameters: type - TMapComponent class. Parameters: component - Child component in this container. | void | remove(T component) Common method for deleting child from this parent. |
indexOf | int indexOf(Class<T> type, T component)(Code) | | Returns index of entity in children list with
specified type .
If component is not child of this container then it returns -1.
< Parameters: T - > TMapComponent type. Parameters: type - TMapComponent class. Parameters: component - Child component in this container. Index of component . |
remove | void remove(T component)(Code) | | Common method for deleting child from this parent.
< Parameters: T - >type of component. Parameters: component - element for remove. |
|
|