Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.javahispano.canyamo.core.action: Javadoc index of package org.javahispano.canyamo.core.action.


Package Samples:

org.javahispano.canyamo.core.action

Classes:

TransparentAction: Empty interface for Actions which should not be registered for "LAST_ACTION" funcionality. Sometimes it's pretty helpfull if after login we can stay in the place we were, so we register the last processed actions. But sometimes this carries an undiserable effect, because some actions should not be registered. A good example is the case "logout -> login". After login we ant to stay in the same place (for example viewing a file, and login to edit it), but if we work always this way, we will never be able to login after a logout, because after login will be logout automatically processed. This interface ...
Action: Interface that should implement all actions to be managed by Canyamo. An action is a "process" that Canyamo can execute in response to an User request. Actions should manipulated the data in order to satisfied User's request, and put data related to the response in WorkData , which will be passed to the associated Displayer , which would render the response in HTML form.
ActionListener: Listener for the execution of Action This interface should be implement for all Displayers which want to know when an Action is executed. Normally this is the case of Displayers that make some kind of caching of content-data, but it can be implement for clases called "commands" that shoul run when an action is executed.
AbstractAction: Help class that implement almost all methods from Action Only method process is declared abstract, so the extending class are encouregad to implement it and the framework can work fine
ActionManager: This (Singleton) class manage all Actions loaded by Canyamo

Home | Contact Us | Privacy Policy | Terms of Service