Package ch.ivyteam.ivy.process.extension
Interface IProcessExtensionConfigurationEditorEx
-
- All Superinterfaces:
ICommonProcessExtensionConfigurationEditor
- All Known Implementing Classes:
AbstractProcessExtensionConfigurationEditor
public interface IProcessExtensionConfigurationEditorEx extends ICommonProcessExtensionConfigurationEditor
The interface of a configuration editor of a process extension (e.g
IUserProcessExtension
).An implementation of this interface must be a public static inner class called Editor of the class that implements the process extension interface (e.g
IUserProcessExtension
). The class must have a public default constructor (no argument constructor).- Since:
- 28.08.2008
- API:
- This is a public API.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
setEnvironment(IProcessExtensionConfigurationEditorEnvironment environment)
Sets the environment of a process extension configuration editor-
Methods inherited from interface ch.ivyteam.ivy.process.extension.ICommonProcessExtensionConfigurationEditor
acceptInput, getComponent, getComposite, getConfiguration, setConfiguration
-
-
-
-
Method Detail
-
setEnvironment
void setEnvironment(IProcessExtensionConfigurationEditorEnvironment environment)
Sets the environment of a process extension configuration editor- Parameters:
environment
- the environment- API:
- This public API is available in Java.
-
-