Package com.tick42.glue.desktop.intents
Interface Intent
public interface Intent
Represents an intent.
- Since:
- 1.4.1
-
Method Summary
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 Details
-
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
-
toString
String toString()Returns theStringrepresentation for this intent.
-