Interface ITextProductEventProcessor
-
- All Known Implementing Classes:
AbstractITextProductEventProcessor
,DefaultITextProductEventProcessor
,UnderAgplITextProductEventProcessor
public interface ITextProductEventProcessor
Interface for product event processors.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getProducer()
Gets the producer line for the product.java.lang.String
getProductName()
Gets the name of the product to which this processor corresponds.java.lang.String
getUsageType()
Gets the usage type of the product to which this processor corresponds.void
onEvent(AbstractProductProcessITextEvent event)
Handles theAbstractProductProcessITextEvent
.
-
-
-
Method Detail
-
onEvent
void onEvent(AbstractProductProcessITextEvent event)
Handles theAbstractProductProcessITextEvent
.- Parameters:
event
- to handle
-
getProductName
java.lang.String getProductName()
Gets the name of the product to which this processor corresponds.- Returns:
- the product name
-
getUsageType
java.lang.String getUsageType()
Gets the usage type of the product to which this processor corresponds.- Returns:
- the usage type
-
getProducer
java.lang.String getProducer()
Gets the producer line for the product.- Returns:
- the producer line
-
-