Interface IIvyProcessPaletteExtension
-
public interface IIvyProcessPaletteExtension
This interface must be implemented by extensions that want to extend the ivy process palette.
ivy will first call the method
addGroups(IIvyProcessPalette)
on every extension and then the methodaddEntries(IIvyProcessPalette)
on every extension. This allows extensions to add their entries to groups that were added by other extensions.- Since:
- 19.08.2008
- API:
- This is a public API.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addEntries(IIvyProcessPalette palette)
Add entries to the palette.void
addGroups(IIvyProcessPalette palette)
Add groups to the palette.
-
-
-
Method Detail
-
addGroups
void addGroups(IIvyProcessPalette palette)
Add groups to the palette.
Use the method
IIvyProcessPalette.addGroup(String, String, int)
to add new groups inside this method.This method is called on every ivy process palette extension before the method
addEntries(IIvyProcessPalette)
is called on every ivy process palette extension. This allows extensions to add their entries in groups that are added by other extensions.You must not call
IIvyProcessPalette.addProcessElementEntry(String, String, int, ch.ivyteam.ivy.components.ProcessKind...)
during this method call.- Parameters:
palette
- the palette where the new groups can be added to- API:
- This public API is available in Java.
-
addEntries
void addEntries(IIvyProcessPalette palette)
Add entries to the palette.
Use the method
IIvyProcessPalette.addProcessElementEntry(String, String, int, ch.ivyteam.ivy.components.ProcessKind...)
to add new entries.This method is called on every ivy process palette extension after the method
addGroups(IIvyProcessPalette)
was called on every ivy process palette extension. This allows extensions to add their entries in groups that were added by other extensions.You must not call
IIvyProcessPalette.addGroup(String, String, int)
during this method call.- Parameters:
palette
- the palette where the new entries can be added to- API:
- This public API is available in Java.
-
-