Package com.tick42.glue.desktop.intents
Interface Intent
-
public interface IntentRepresents an intent.- Since:
- 1.4.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<IntentHandler>getHandlers()Return theIntentHandlers that provide an implementation for the intent and can be used to raise an intent request.StringgetName()Return the name of the Intent for example"ShowGraph".StringtoString()Returns theStringrepresentation for this intent.
-
-
-
Method Detail
-
getName
String getName()
Return the name of the Intent for example"ShowGraph".- Returns:
- The name of the the Intent, never
null
-
getHandlers
List<IntentHandler> getHandlers()
Return theIntentHandlers that provide an implementation for the intent and can be used to raise an intent request.- Returns:
- The
IntentHandlers that provide an implementation for the intent, nevernull
-
-