-
abbot.script.Action
Encapsulate an action. Usage:
<action method="..." args="...">
<action method="..." args="component_id[,...]" class="...">
An Action reproduces a user semantic action (such as a mouse click, menu selection, or drag/drop action) on a particular component. The id of the component being operated on must be the first argument, and the class of that component must be identified by the class tag if the action is not provided by the base
ComponentTester class.
Note that the method name is the name of the actionXXX method, e.g. to click a button (actionClick on AbstractButtonTester), the XML would appear thus:
<action method="actionClick" args="My Button" class=javax.swing.AbstractButton>
Note that if the first argument is a Component, the class tag is required. Note also that the specified class is the
tested class, not the target class for the method invocation.
The target class for the method invocation is always a ComponentTester-derived class.
-
actions.Action
-
agh.sr.rmi.client.action.Action
@author Grzegorz Miejskion 14.04.14.
-
aima.core.agent.Action
Describes an Action that can or has been taken by an Agent via one of its Actuators.
@author Ciaran O'Reilly
-
avrora.actions.Action
The Action
class defines a new action that the main driver is capable of executing. Each instance of Action
is inserted into a hash map in the main class, with the key being its name. For example, the action to simulate a program is inserted into this hash map with the key "simulate", and an instance of avrora.actions.SimulateAction
.
-
bm.core.mvc.Action
An action is a command with an action code and a name, that make it easy to handle and allows automatic controller event dispatching.
@author
Narciso Cerezo
@version $Revision: 6 $
-
caltrop.interpreter.ast.Action
-
center.task.TaskSchedulerInfo.Action
-
cero.games.Action
Represents a game action a player may do anytime.
@author Telem
-
ch.entwine.weblounge.common.site.Action
An
Action
is java code that can be mounted to a specific url and that will be executed if these conditions hold:
- The request is directly targeted at the action's mountpoint
- The action supports the requested flavor
Once a request hits the mountpoint of an action, the action is then called in this order:
- {@link #configure(WebloungeRequest,WebloungeResponse,RequestFlavor)}
- {@link #startResponse(WebloungeRequest,WebloungeResponse)}
By implementing an extended interface such as {@link HTMLAction}, {@link XMLAction} or {@link JSONAction}, more sophisticated patterns for request handling and output generation are supported.
Note: A class that implements the Action
interface must provide a default constructor (no arguments), since action handlers are created using reflection.
-
ch.qos.logback.core.joran.action.Action
Most of the work for configuring logback is done by Actions.
Action methods are invoked as the XML file is parsed.
This class is largely inspired from the relevant class in the commons-digester project of the Apache Software Foundation.
@author Craig McClanahan
@author Christopher Lenz
@author Ceki Gülcü
-
ch.ralscha.extdirectspring.bean.api.Action
-
cn.com.annotations.Action
-
co.cubicode.rbacframework.models.catalogs.Action
Clase que representa una acción, url ó recurso
@author juanku
-
com.agical.rmock.core.Action
-
com.alibaba.ons.api.Action
-
com.alibaba.wasp.plan.action.Action
basic Action.
-
com.aliyun.openservices.ons.api.Action
-
com.appspot.gaeforum309.pathing.Action
-
com.atlauncher.data.Action
-
com.badlogic.gdx.scenes.scene2d.Action
-
com.bergerkiller.bukkit.tc.actions.Action
-
com.bj58.spat.gaea.server.core.communication.http.Action
ServerStateType
@author Service Platform Architecture Team (spat@58.com)
-
com.blogger.tcuri.appserver.Action
各アクションクラスが継承する抽象クラスです
@author tomofumi
-
com.cburch.logisim.proj.Action
-
com.chap.links.client.DataTable.Action
-
com.cloud.agent.api.routing.AggregationControlCommand.Action
-
com.consol.citrus.model.testcase.core.Action
-
com.dotmarketing.portlets.workflowmessages.model.Action
@author roccoTo change the template for this generated type comment go to Window>Preferences>Java>Code Generation>Code and Comments
-
com.dtolabs.rundeck.core.cli.Action
The Action interface encapsulates a single action invoked via the command line.
@author Greg Schueler
greg@dtosolutions.com
@version $Revision: 1079 $
-
com.eclipsesource.tabris.tracking.internal.piwik.model.action.Action
-
com.eclipsesource.tabris.ui.Action
An {@link Action} is the abstraction of a user's interaction with a Tabris UI. Actions can have different visualrepresentations rendered differently by each platform. As it is with {@link Page} types they need to be registeredwith their type and will be created by the framework. Therefore an implementation needs to provide a no-argument constructor.
During runtime you can influence an {@link Action} by changing it's visibility or it's enablement using the{@link ActionManager}.
@see ActionConfiguration
@see ActionManager
@since 0.11
-
com.elibom.jogger.middleware.router.interceptor.Action
This interface provides access to some features of an action to an {@link com.elibom.jogger.middleware.router.interceptor.Interceptor}implementation.
@author German Escobar
-
com.findwise.hydra.Document.Action
-
com.ghosthack.turismo.action.Action
-
com.github.zhongl.hs4j.kit.annotations.HandlerSocket.Action
-
com.google.appengine.tools.util.Action
A command line action.
-
com.google.gwt.autobean.rebind.model.AutoBeanMethod.Action
-
com.google.sitebricks.routing.Action
An abstract representation of the service code called when a request is processed. Typically maps to a method annotated with @Get or something like that. Can be replaced with a SPI to create dynamic behavior.
@author dhanji@gmail.com (Dhanji R. Prasanna)
-
com.googlecode.sonic.action.Action
Actionを表すマーカーインターフェース。
@author hisao takahashi
@since 1.0
-
com.googlecode.wicketwebbeans.annotations.Action
-
com.habitsoft.kiyaa.metamodel.Action
Action metadata wraps an action which can be performed on a particular object, and allows you to call it. A sort of replacement for calling methods using reflection.
-
com.intellij.struts2.dom.struts.action.Action
action
@author Yann Cébron
-
com.khs.sherpa.annotation.Action
-
com.liferay.portal.struts.Action
View Source
@author Brian Wing Shun Chan
@version $Revision: 1.3 $
-
com.linkedin.restli.server.annotations.Action
-
com.melitronic.domain.entity.Action
Entity implementation class for Entity: Action
-
com.melitronic.rmapp.model.Action
-
com.netflix.eureka.PeerAwareInstanceRegistry.Action
-
com.opengamma.engine.function.resolver.SimpleResolutionRuleTransform.Action
-
com.opensymphony.xwork.Action
-
com.opensymphony.xwork2.Action
All actions
may implement this interface, which exposes the
execute()
method.
However, as of XWork 1.1, this is
not required and is only here to assist users. You are free to create POJOs that honor the same contract defined by this interface without actually implementing the interface.
-
com.sk89q.craftbook.access.Action
Action to delay.
@author sk89q
-
com.sogou.qadev.service.cynthia.bean.Action
@description :action interface
@author :liming
@mail :liming@sogou-inc.com
@date :2014-5-6 下午2:25:40
@version :v1.0
-
com.stimulus.archiva.domain.ArchiveRules.Action
-
com.sun.corba.se.spi.orbutil.fsm.Action
Description goes here
@author Ken Cavanaugh
-
com.sun.enterprise.config.serverbeans.Action
-
com.taobao.metamorphosis.utils.Utils.Action
-
com.totsp.gwittir.client.action.Action
-
com.vaadin.event.Action
Implements the action framework. This class contains subinterfaces for action handling and listing, and for action handler registrations and unregistration.
@author Vaadin Ltd.
@since 3.0
-
com.werken.werkz.Action
-
cu.ftpd.commands.site.actions.Action
@author Markus Jevring
@since 2007-okt-26 : 17:46:25
@version $Id: Action.java 258 2008-10-26 12:47:23Z jevring $
-
de.nameless.gameEngine.util.StateMachine.Action
-
de.odysseus.calyxo.control.Action
Action interface.
Actions are the controller's ends supplied by the application developer. An action may invoke business logic, manipulate business data or do whatever is needed to process the request.
Actions are initialized by the controller via the
init()
. Exactly one instance will be created per action configuration.
@author Christoph Beck
-
de.willuhn.jameica.gui.Action
-
douyu.mvc.Action
-
easysm.datatypes.Action
@author FourCheeses Software Solutions
-
edu.drexel.cs544.mcmuc.actions.Action
Action extends ActionBase and is the direct parent class for the various action types. All child classes are concrete actions that represent a message and must provide their processing and JSON serialization
-
flash.swf.Action
Base class for all actionscript opcodes
@author Clement Wong
-
foo.domaintest.action.Action
Interface representing the logic of a servlet.
-
fr.irit.halterego.ggp_agent.rlcpp.Action
This class comes from the VanHasselt C++ Library. This was a struct, it explains why all the members are public.
-
fr.soleil.model.scanserver.Action
-
fr.soleil.salsa.bean.ISalsaActionBeanListener.Action
-
frsf.cidisi.faia.agent.Action
-
games.stendhal.common.Line.Action
-
gov.nysenate.openleg.model.Action
Represents a single action on a single bill. E.g. REFERRED TO RULES Uniquely identified by Bill+Date.getTime()+Text.
@author GraylinKim
-
grammar.input.stdin.Command.Action
-
heart.Action
@author sbkThe interface that has to be implemented by the class that is specified to be an action in the {@link Rule}. Actions are executed only if the conditional part of the rule is satisfied. Actions are not {@link Decision}. They should not be used to change attributes values.
-
hirondelle.web4j.action.Action
Process an HTTP request, and return a {@link ResponsePage}. This interface is likely the most important abstraction in WEB4J. Almost every feature implemented by the programmer will need an implementation of this interface.
Typically, one of the ActionXXX abstract base classes are used to build implementations of this interface.
-
hudson.model.Action
Object that contributes additional information, behaviors, and UIs to {@link ModelObject}(more specifically {@link Actionable} objects, which most interesting {@link ModelObject}s are.)
{@link Action}s added to a model object creates additional URL subspace under the parent model object, through which it can interact with users. {@link Action}s are also capable of exposing themselves to the left hand side menu of a {@link ModelObject} (for example to {@link Project}, {@link Build}, and etc.)
Some actions use the latter without the former (for example, to add a link to an external website), while others do the former without the latter (for example, to just draw some graphs in floatingBox.jelly), and still some others do both.
Views
If an action has a view named floatingBox.jelly, it will be displayed as a floating box on the top page of the target {@link ModelObject}. (For example, this is how the JUnit test result trend shows up in the project top page. See {@link TestResultProjectAction}.
On the target {@link ModelObject} page, actions are rendered as an item in the side panelby the "/lib/hudson:actions" jelly tag, but you can override this for your action by writing {@code action.jelly}. See the "actions" tag for what the default handling is and tweak from there. One of the use cases of this is to show nested actions, like where Jenkins show the option to wipe out the workspace inside the workspace link:
<l:task icon="images/24x24/folder.gif" href="${url}/ws/" title="${%Workspace}"> <l:task icon="images/24x24/folder-delete.gif" href="${url}/wipeOutWorkspace" title="${%Wipe Out Workspace}" /> </l:task>
Persistence
Actions are often persisted as a part of {@link Actionable}(for example with {@link Build}) via XStream. In some other cases, {@link Action}s are transient and not persisted (such as when it's used with {@link Job}).
@author Kohsuke Kawaguchi
-
io.netty.handler.codec.http2.Http2StreamRemovalPolicy.Action
.ietf.org/html/draft-ietf-httpbis-http2-14#section-8.1.">HTTP/2 Spec Message Flow
-
io.teknek.intravert.action.Action
-
jade.content.onto.basic.Action
This class implements the action
operator of the FIPA SL0 action.
@author Giovanni Caire - TILAB
-
javaff.data.Action
-
javax.swing.Action
-
javax.xml.ws.Action
-
javax.xml.ws.addressing.Action
-
koth.game.Action
Represent a single action (move and stance modifier) for a given pawn.
-
lupos.event.action.Action
Abstract base class for actions.
-
mage.interfaces.Action
Light weight action interface. For executing actions without any context.
@author ayratn, noxx
-
me.taylorkelly.bigbrother.datablock.BBDataBlock.Action
-
mfinder.annotation.Action
-
model.tools.flowmanager.Action
-
name.pehl.karaka.client.activity.event.ActivityAction.Action
-
net.fortuna.ical4j.model.property.Action
-
net.minecraftforge.event.entity.player.PlayerInteractEvent.Action
-
net.sf.arianne.marboard.server.action.Action
base interface for all actions
@author hendrik
-
net.sourceforge.fullsync.Action
-
net.sourceforge.pebble.web.action.Action
The superclass for all command/action components delegated to by the controller.
@author Simon Brown
-
net.suncrescent.clicker.robot.action.Action
-
nexj.core.meta.Action
An event action. It is executed when an event is triggered, if its associated condition is satisfied.
-
nl.topicus.onderwijs.dashboard.datatypes.hudson.Action
-
nu.fw.jeti.plugins.drawing.shapes.actions.Action
This class represents an abstract action. Action is an operation that was made by a user and that changed the picture. It is sent to all the other users. After executing all actions we can obtain the history of the picture. After creating the action it should be executed to make a difference on the picture.
@author El�bieta Iwaszkiewicz (ei197866@students.mimuw.edu.pl)
-
org.allspice.parser.parsetable.Action
Your basic action (shift/reduce/accept)
@author egoff
-
org.andrewberman.ui.Action
The
Action
class provides a simple facility for creating and deploying actions in a UI-type setting. It uses Java's Reflection API to store a method call, which is performed when the
performAction()
method is called on the Action object.
Generally, you probably shouldn't be creating your own Action methods unless you're extending some of the built-in Menu stuff. Instead, an Action should be created via a call to a MenuItem's create()
or add()
method.
Shortcuts (which are a simple facility for keyboard shortcuts) generally contain a reference to an Action object, which is called when the keyboard shortcut is pressed.
TODO: Split the current Action
class into an interface and a default implementation. Similar to Swing's Action class, an Action
object should simply be a guarantee that the object has an actionPerformed
method. Then, the default implementation, MethodAction
, would have the functionality that is currently within the Action
class, and we could create other, new types of actions: ThreadAction
, CalculationAction
, ListenableAction
... I'm out of ideas, but come up with some yourself!
@author Gregory Jordan
@see org.andrewberman.ui.MenuItem
@see org.andrewberman.ui.Shortcut
@see org.andrewberman.ui.menu.MenuItem
-
org.antlr.v4.codegen.model.Action
-
org.apache.ambari.server.state.action.Action
-
org.apache.axiom.testutils.concurrent.Action
-
org.apache.axis.message.addressing.Action
-
org.apache.axis2.java.security.action.Action
Action reads the data from an input file and then saves the file input to Java2SecTest class
-
org.apache.blur.manager.clusterstatus.ClusterStatus.Action
-
org.apache.blur.utils.GCWatcher.Action
-
org.apache.cocoon.acting.Action
@author
Giacomo Pati
@version CVS $Revision: 1.3.2.5 $ $Date: 2001/10/11 08:52:03 $
-
org.apache.cocoon.sitemap.action.Action
-
org.apache.commons.scxml.model.Action
An abstract base class for executable elements in SCXML, such as <assign>, <log> etc.
-
org.apache.commons.scxml2.model.Action
An abstract base class for executable elements in SCXML, such as <assign>, <log> etc.
-
org.apache.falcon.oozie.coordinator.ACTION
-
org.apache.falcon.oozie.workflow.ACTION
-
org.apache.felix.gogo.commands.Action
-
org.apache.hadoop.hbase.chaos.actions.Action
A (possibly mischievous) action that the ChaosMonkey can perform.
-
org.apache.hadoop.hbase.client.Action
A Get, Put or Delete associated with it's region. Used internally by {@link HTable#batch} to associate the action with it's region and maintainthe index from the original request.
-
org.apache.hadoop.hbase.master.balancer.BaseLoadBalancer.Cluster.Action
-
org.apache.isis.viewer.html.action.Action
-
org.apache.ivory.oozie.coordinator.ACTION
-
org.apache.jackrabbit.vault.vlt.actions.Action
Action
...
-
org.apache.jsieve.mail.Action
Interface Action
defines the final state of a MailAdapter
instance.
-
org.apache.karaf.shell.api.action.Action
An action is the default implementation of the commands in karaf. In OSGi, Actions are discovered using an extender and a new instance of the class is created when the command is invoked, so that the implementation does not need to be thread safe. Before the call to the execute method the action is checked for fields annotated with @Reference and injected with services coming from the SessionFactory's Registry or from the OSGi registry. Methods annotated with @Init are then called. The next step is to inject command line parameters into fields annotated with @Option and @Argument and then call the execute method. Any class implementing Action must have a no argument constructor. This is necessary so the help generator can instantiate the class and get the default values. In order to make commands available from the non-OSGi shell, the commands must be listed in a file available at META-INF/services/org/apache/karaf/shell/commmands.
@see org.apache.karaf.shell.api.action.Command
@see org.apache.karaf.shell.api.action.lifecycle.Service
-
org.apache.karaf.shell.commands.Action
An action allows to easily execute commands in karaf. It can be assumed that each action is only accessed by a single thread at a time. An Action is always part of an AbstractCommand. The AbstractCommand makes sure the single threaded assumption above is true. Before the call to the execute method the action is checked for annotated fields (@Argument, @Option). These fields are populated from the command arguments before the action is called. Any class implementing Action must have a no argument constructor. This is necessary so the help generator can instantiate the class and get the default values.
-
org.apache.lenya.cms.workflow.Action
@author andreas
-
org.apache.lenya.workflow.Action
Workflow action.
-
org.apache.log4j.joran.action.Action
Most of the work for configuring log4j is done by Actions. Methods of an Action are invoked while an XML file is parsed through. This class is largely copied from the relevant class in the commons-digester project of the Apache Software Foundation.
@author Craig McClanahan
@author Christopher Lenz
@author Ceki Gülcü
-
org.apache.log4j.rolling.helper.Action
The Action interface should be implemented by any class that performs file system actions for RollingFileAppenders after the close of the active log file.
@author Curt Arnold
-
org.apache.logging.log4j.core.appender.rolling.action.Action
The Action interface should be implemented by any class that performs file system actions for RollingFileAppenders after the close of the active log file.
-
org.apache.logging.log4j.core.appender.rolling.helper.Action
The Action interface should be implemented by any class that performs file system actions for RollingFileAppenders after the close of the active log file.
-
org.apache.maven.plugins.changes.model.Action
-
org.apache.maven.werkz.Action
Interface for goal-satisfying actions.
@see Goal
@see Goal#setAction
@see DefaultAction
@author
bob mcwhirter
-
org.apache.pivot.wtk.Action
Abstract base class for "actions". Actions are common application behaviors generally triggered by buttons and keyboard shortcuts.
-
org.apache.qpid.server.util.Action
-
org.apache.struts.action.Action
An Action is an adapter between the contents of an incoming HTTP request and the corresponding business logic that should be executed to process this request. The controller (RequestProcessor) will select an appropriate Action for each request, create an instance (if necessary), and call the execute
method.
Actions must be programmed in a thread-safe manner, because the controller will share the same instance for multiple simultaneous requests. This means you should design with the following items in mind:
- Instance and static variables MUST NOT be used to store information related to the state of a particular request. They MAY be used to share global resources across requests for the same action.
- Access to other resources (JavaBeans, session variables, etc.) MUST be synchronized if those resources require protection. (Generally, however, resource classes should be designed to provide their own protection where necessary.
When an Action
instance is first created, the controller will call setServlet
with a non-null argument to identify the servlet instance to which this Action is attached. When the servlet is to be shut down (or restarted), the setServlet
method will be called with a null
argument, which can be used to clean up any allocated resources in use by this Action.
@version $Rev: 421119 $ $Date: 2005-08-26 21:58:39 -0400 (Fri, 26 Aug 2005)$
-
org.apache.struts2.convention.annotation.Action
Processes configuration, page, and action class paths to create snippets of the files for display.
-
org.apache.struts2.jquery.components.Action
-
org.apache.tomcat.util.compat.Action
-
org.apache.wicket.authorization.Action
A class for constructing singleton constants that represent a given component action that needs to be authorized. The Wicket core framework defines Component.RENDER and Component.ENABLE actions, but future versions of the framework may add more actions and user defined components can define their own actions as well.
@see org.apache.wicket.Component#RENDER
@see org.apache.wicket.Component#ENABLE
@author Eelco Hillenius
@author Jonathan Locke
@since 1.2
-
org.apache.ws.security.action.Action
Interface for all actions
-
org.apache.wss4j.dom.action.Action
Interface for all actions
-
org.as.jtrello.actions.Action
-
org.atmosphere.cpr.Action
An Action is used by {@link AtmosphereInterceptor}, {@link AsyncSupport} and {@link AtmosphereFramework} to determinewhat to do with a request, e.g suspend it, resume it, etc.
@author Jeanfrancois Arcand
-
org.atmosphere.cpr.AtmosphereServlet.Action
-
org.auraframework.instance.Action
An interface for the server side implementation of an action.
-
org.beangle.struts2.convention.route.Action
web路由的系统结点
@author chaostone
-
org.brixcms.auth.Action
-
org.bukkit.event.block.Action
-
org.codehaus.plexus.action.Action
-
org.controlsfx.control.action.Action
-
org.cybergarage.upnp.Action
-
org.destecs.core.scenario.Action
-
org.deuce.transaction.tl2cm.cm.ContentionManager.Action
-
org.dmd.mvw.client.mvwmenus.base.Action
The Action class provides some base functionality for Actions.
-
org.dom4j.rule.Action
Action
represents some default action which should occur when a rule matches a node in the XSLT processing model.
@author
James Strachan
@version $Revision: 1.7 $
-
org.drools.runtime.pipeline.Action
This api is experimental and thus the classes and the interfaces returned are subject to change.
-
org.drools.spi.Action
-
org.eclipse.birt.report.engine.api.impl.Action
-
org.eclipse.jface.action.Action
The standard abstract implementation of an action.
Subclasses must implement the IAction.run
method to carry out the action's semantics.
-
org.eclipse.jgit.lib.RebaseTodoLine.Action
-
org.eclipse.uml2.Action
-
org.eclipse.uml2.uml.Action
-
org.encog.ml.world.Action
-
org.exist.performance.actions.Action
-
org.exoplatform.services.command.action.Action
Created by The eXo Platform SAS.
@author Gennady Azarenkov
@version $Id: $
@LevelAPI Platform
-
org.fenrir.yggdrasil.ui.action.Action
TODO v1.0 Documentació
@author Antonio Archilla Nava
@version v0.1.20140411
-
org.g4studio.core.mvc.xstruts.action.Action
An Action is an adapter between the contents of an incoming HTTP request and the corresponding business logic that should be executed to process this request. The controller (RequestProcessor) will select an appropriate Action for each request, create an instance (if necessary), and call the execute
method.
Actions must be programmed in a thread-safe manner, because the controller will share the same instance for multiple simultaneous requests. This means you should design with the following items in mind:
- Instance and static variables MUST NOT be used to store information related to the state of a particular request. They MAY be used to share global resources across requests for the same action.
- Access to other resources (JavaBeans, session variables, etc.) MUST be synchronized if those resources require protection. (Generally, however, resource classes should be designed to provide their own protection where necessary.
When an Action
instance is first created, the controller will call setServlet
with a non-null argument to identify the servlet instance to which this Action is attached. When the servlet is to be shut down (or restarted), the setServlet
method will be called with a null
argument, which can be used to clean up any allocated resources in use by this Action.
@version $Rev: 421119 $ $Date: 2005-08-26 21:58:39 -0400 (Fri, 26 Aug 2005) $
-
org.geotools.data.wfs.v1_0_0.Action
This interface represents pending actions within a transaction.
@author dzwiers
@source $URL$
-
org.gradle.api.Action
Performs some action against objects of type T.
@param < T> The type of object which this action accepts.
-
org.gwt.mosaic.actions.client.Action
An {@code Action} represents the non-UI side of a command which can betriggered by the end user. {@code Actions} are typically associated withbuttons, menu items, and items in tool bars. When the end user triggers the command via its control, the action's {@code #actionPerformed(ActionEvent)}method is invoked to do the real work.
This interface exists only to define the API for {@code Actions}. It is not intended to be implemented by clients.
@author georgopoulos.georgios(at)gmail.com
@see CommandAction
-
org.hbase.async.generated.ClientPB.Action
-
org.jahia.bin.Action
Base handler for content actions.
@author Sergiy Shyrkov
-
org.jboss.aesh.edit.actions.Action
-
org.jboss.forge.classloader.mock.sidewaysproxy.Action
-
org.jboss.gwt.circuit.Action
An action carrying a payload. The payload must implement {@code hashCode()} and {@code equals()}.
-
org.jboss.seam.pages.Action
-
org.jboss.soa.esb.listeners.config.Action
Common information used to configure an action
@author
Kevin Conner
-
org.jbpm.api.Action
@author salaboy
-
org.jbpm.graph.def.Action
-
org.jbpm.process.instance.impl.Action
-
org.jbpm.ui.common.model.Action
-
org.jdesktop.application.Action
-
org.jdesktop.jdic.filetypes.Action
-
org.jdesktop.wonderland.common.security.Action
An action that a user can perform on a resource. This is the common superclass of all actions in the Wonderland system. An action can be any class that extends Action and has a public, no-argument construtor.
Actions are typically referred to by class, so are not designed to be stateful or mutable.
@author jkaplan
-
org.jemmy.action.Action
@author shura, KAM
-
org.jivesoftware.smackx.commands.AdHocCommand.Action
-
org.jmock.api.Action
An object that fakes the behaviour of an {@link org.jmock.internal.InvocationExpectation}.
-
org.jrest4guice.dao.actions.Action
DAO动作 接口
@author
gzYangfan
@param < A> 该动作的注解类型
@param < T> 执行该动作所需的上下文环境类型
-
org.jwall.app.Action
@author Christian Bockermann <chris@jwall.org>
-
org.jwildfire.script.Action
-
org.mojavemvc.annotations.Action
-
org.mokai.Action
Performs an operation with a message (validation, transformation, etc.). Actions can be invoked after messages are received, before and/or after they have been processed by a connector.
@author German Escobar
-
org.nasutekds.guitools.controlpanel.datamodel.Action
The class that is used by the different action buttons on the left side of the main ControlPanel dialog.
-
org.netbeans.jemmy.Action
Defines an action to be executed by ActionProducer
instance.
@see org.netbeans.jemmy.ActionProducer
@author Alexandre Iline (alexandre.iline@sun.com)
-
org.nfctools.ndef.wkt.records.Action
-
org.ogce.schemas.gfac.inca.faults.ActionDocument.Action
-
org.opencustomer.framework.webapp.panel.Action
-
org.openfaces.component.util.Action
-
org.opengis.filter.identity.Version.Action
-
org.openqa.selenium.interactions.Action
-
org.opensaml.saml1.core.Action
Interface describing how a SAML1.1 Action
element behaves
-
org.opensaml.saml2.core.Action
SAML 2.0 Core Action.
-
org.openswing.swing.server.Action
-
org.ozsoft.texasholdem.actions.Action
Player action.
@author Oscar Stigter
-
org.pdfclown.documents.interaction.actions.Action
fanochizzolini.it)
@since 0.0.7
@version 0.1.0
-
org.platformlayer.core.model.Action
-
org.raml.model.Action
-
org.rlcommunity.rlglue.codec.types.Action
-
org.rstudio.studio.client.workbench.views.vcs.common.events.DiffChunkActionEvent.Action
-
org.rzo.yajsw.action.Action
-
org.sonar.api.issue.action.Action
@since 3.6
-
org.sonar.api.server.ws.WebService.Action
-
org.sonatype.nexus.proxy.access.Action
-
org.soybeanMilk.core.exe.Action
动作,它可以包含多个 {@linkplain Executable 可执行对象}( {@linkplain Action 动作}或者 {@linkplain Invoke 调用}), 并且它们会按照添加时的顺序被执行。如果某个可执行对象仅会被添加到动作中,那么你不需要为其设置唯一名称,因为动作不需要标识各子可执行对象。
@author earthangry@gmail.com
@date 2010-5-9
-
org.springframework.ide.eclipse.webflow.core.internal.model.Action
@author Christian Dupuis
@since 2.0
-
org.springframework.roo.addon.tailor.actions.Action
Base interface of action hierarchy. Used for dynamic binding of available actions.
To implement a new Action: - Create a Component Service that extend AbstractAction - Create a static method in there that creates an ActionConfig for the new Action. This method defines the "interface" for this action: What data does the execute method need in addition to the data {@link CommandTransformation#getInputCommand()}? - Implement the execute method: Read the attributes created with the static factory method, execute the action.
@author Vladimir Tihomirov
-
org.springframework.webflow.execution.Action
A command that executes a behavior and returns a logical execution result a calling flow execution can respond to.
Actions typically delegate down to the application (or service) layer to perform business operations. They often retrieve data to support response rendering. They act as a bridge between a SWF web-tier and your middle-tier business logic layer.
When an action completes execution it signals a result event describing the outcome of that execution (for example, "success", "error", "yes", "no", "tryAgain", etc). In addition to providing a logical outcome the flow can respond to, a result event may have payload associated with it, for example a "success" return value or an "error" error code. The result event is typically used as grounds for a state transition out of the current state of the calling Flow.
Action implementations are often application-scoped singletons instantiated and managed by a web-tier Spring application context to take advantage of Spring's externalized configuration and dependency injection capabilities (which is a form of Inversion of Control [IoC]). Actions may also be stateful prototypes, storing conversational state as instance variables. Action instance definitions may also be locally scoped to a specific flow definition (see use of the "import" element of the root XML flow definition element.)
Note: Actions are directly instantiatable for use in a standalone test environment and can be parameterized with mocks or stubs, as they are simple POJOs. Action proxies may also be generated at runtime for delegating to POJO business operations that have no dependency on the Spring Web Flow API.
Note: if an Action is a singleton managed in application scope, take care not to store and/or modify caller-specific state in a unsafe manner. The Action {@link #execute(RequestContext)} method runs in an independently executingthread on each invocation so make sure you deal only with local data or internal, thread-safe services.
Note: an Action is not a controller like a Spring MVC controller or a Struts action is a controller. Flow actions are commands. Such commands do not select views, they execute arbitrary behavioral logic and then return an logical execution result. The flow that invokes an Action is responsible for responding to the execution result to decide what to do next. In Spring Web Flow, the flow is the controller.
@author Keith Donald
@author Erwin Vervaet
-
org.springframework.ws.soap.addressing.server.annotation.Action
-
org.teleal.cling.model.meta.Action
-
org.thechiselgroup.choosel.core.client.ui.Action
-
org.timerescue.action.Action
@author chamanx
-
org.unidal.web.mvc.Action
-
org.waveprotocol.wave.client.wavepanel.impl.edit.Actions.Action
-
org.waveprotocol.wave.model.document.MutableDocument.Action
-
org.waveprotocol.wave.model.document.ObservableMutableDocument.Action
-
org.zkoss.web.servlet.dsp.action.Action
An action that could be used with {@link org.zkoss.web.servlet.dsp.InterpreterServlet}. It is like a tag in JSP.
@author tomyeh
-
pivot.wtk.Action
Abstract base class for "actions". Actions are common application behaviors generally triggered by buttons and keyboard shortcuts.
@author gbrown
-
plan_runner.thetajoin.dynamic.advisor.Action
Abstract class to represent an Action. This could be either a migration or a split (or any other action we choose to add later). This will include all actions required from a node including exchanges, discards and renaming.
-
prefuse.action.Action
rg">jeffrey heer
-
ru.ifmo.diplom.kirilchuk.jawelet.util.extensioner.Action
@author Kirilchuk V.E.
-
shocks.dawp.Action
Action components are the basic building blocks of a business system. They are simple objects which are executed in a particular sequence, as determined by the developer, described in the workflow descriptor and implemented by the workflow control system. The interoperation of Action components and the order and circumstances of their execution are all managed by the workflow control mechanism.
-
smack.down.Action
-
soc.qase.state.Action
Handles action parameters used in movement messages sent between client and a host. The Action class is used when a QASE agent is trying to change its self state in a simulated environment. It is implemented as a wrapper of functionality related to Quake2 client control, i.e. firing weapons, pressing keyboard keys, etc.
-
su.lafayette.udptracker.structures.Action
-
trackerModule.core.rulestructure.Action
The Class Action.
-
transientlibs.bindedobjects.core.datasets.Action
@author kibertoad
-
voldemort.store.routed.action.Action
An Action is executed in response to the {@link Pipeline} receiving an{@link Event}. An Action is a discrete portion of logic that forms part of the overall process that executes a given operation. There's no clear standard about how much or how little logic is performed in a given Action, but there are intuitive separations in the logic that form natural boundaries.
Actions are mapped to events by the {@link Pipeline} via the{@link Pipeline#addEventAction(Event,Action)} method.
@see Pipeline#addEventAction(Event,Action)
-
webwork.action.Action
-
xregistry.XregistryConstants.Action
-
zendeskapi.models.macros.Action
@author jgroth