Class AbstractActionFactory
- java.lang.Object
-
- de.funfried.netbeans.plugins.editor.closeleftright.AbstractActionFactory
-
- All Implemented Interfaces:
AdditionalCloseActionFactory
- Direct Known Subclasses:
CloseLeftActionFactory,CloseOtherProjectTabsActionFactory,CloseRightActionFactory,CloseSameProjectTabsActionFactory
public abstract class AbstractActionFactory extends Object implements AdditionalCloseActionFactory
Base class for closing actions.- Author:
- bahlef
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedAbstractActionFactory(String name)Constructor of abstract classAbstractActionFactory.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetName()booleanisActive()voidsetActive(boolean active)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface de.funfried.netbeans.plugins.editor.closeleftright.AdditionalCloseActionFactory
createAction, getId, isGlobalAction
-
-
-
-
Constructor Detail
-
AbstractActionFactory
protected AbstractActionFactory(String name)
Constructor of abstract classAbstractActionFactory.- Parameters:
name- the name of the action
-
-
Method Detail
-
getName
public String getName()
- Specified by:
getNamein interfaceAdditionalCloseActionFactory
-
isActive
public boolean isActive()
- Specified by:
isActivein interfaceAdditionalCloseActionFactory
-
setActive
public void setActive(boolean active)
- Specified by:
setActivein interfaceAdditionalCloseActionFactory
-
-