Package org.eclipse.equinox.p2.metadata
Interface ITouchpointData
-
public interface ITouchpointData
ITouchpoint data instances contain the additional information needed by a touchpoint to execute each engine phase it participates in. This includes the sequence of instruction statements to be executed during each phase, and any additional supporting data needed to perform the phase.- Since:
- 2.0
- See Also:
MetadataFactory.createTouchpointData(Map)
- Restriction:
- This interface is not intended to be implemented by clients.
- Restriction:
- This interface is not intended to be extended by clients.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
equals(Object obj)
Returns whether this TouchpointData is equal to the given object.ITouchpointInstruction
getInstruction(String instructionKey)
Returns the touchpoint instruction corresponding to the given key.Map<String,ITouchpointInstruction>
getInstructions()
Returns an unmodifiable map of the touchpoint instructions.
-
-
-
Method Detail
-
getInstruction
ITouchpointInstruction getInstruction(String instructionKey)
Returns the touchpoint instruction corresponding to the given key.- Returns:
- the touchpoint instruction corresponding to the given key,
or
null
if no such instruction exists.
-
getInstructions
Map<String,ITouchpointInstruction> getInstructions()
Returns an unmodifiable map of the touchpoint instructions. The map keys are strings, and the values are instances ofITouchpointInstruction
.- Returns:
- the touchpoint instructions
-
-