📄 action.java
字号:
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.commons.scxml.model;
import java.io.Serializable;
import java.util.Collection;
import java.util.Map;
import org.apache.commons.logging.Log;
import org.apache.commons.scxml.ErrorReporter;
import org.apache.commons.scxml.EventDispatcher;
import org.apache.commons.scxml.SCInstance;
import org.apache.commons.scxml.SCXMLExpressionException;
/**
* An abstract base class for executable elements in SCXML,
* such as <assign>, <log> etc.
*
*/
public abstract class Action implements NamespacePrefixesHolder,
Serializable {
/**
* Link to its parent or container.
*/
private Executable parent;
/**
* The current XML namespaces in the SCXML document for this action node,
* preserved for deferred XPath evaluation.
*/
private Map namespaces;
/**
* Current document namespaces are saved under this key in the parent
* state's context.
*/
private static final String NAMESPACES_KEY = "_ALL_NAMESPACES";
/**
* Constructor.
*/
public Action() {
super();
this.parent = null;
this.namespaces = null;
}
/**
* Get the Executable parent.
*
* @return Returns the parent.
*/
public final Executable getParent() {
return parent;
}
/**
* Set the Executable parent.
*
* @param parent The parent to set.
*/
public final void setParent(final Executable parent) {
this.parent = parent;
}
/**
* Get the XML namespaces at this action node in the SCXML document.
*
* @return Returns the map of namespaces.
*/
public final Map getNamespaces() {
return namespaces;
}
/**
* Set the XML namespaces at this action node in the SCXML document.
*
* @param namespaces The document namespaces.
*/
public final void setNamespaces(final Map namespaces) {
this.namespaces = namespaces;
}
/**
* Return the parent state.
*
* @return The parent State
* @throws ModelException For an unknown TransitionTarget subclass
*
* @deprecated Use {@link #getParentTransitionTarget()} instead.
*/
public final State getParentState() throws ModelException {
TransitionTarget tt = parent.getParent();
if (tt instanceof State) {
State st = (State) tt;
return st;
} else if (tt instanceof Parallel || tt instanceof History) {
State st = (State) tt.getParent();
return st;
} else {
throw new ModelException("Unknown TransitionTarget subclass:"
+ tt.getClass().getName());
}
}
/**
* Return the {@link TransitionTarget} whose {@link Context} this action
* executes in.
*
* @return The parent {@link TransitionTarget}
* @throws ModelException For an unknown TransitionTarget subclass
*
* @since 0.9
*/
public final TransitionTarget getParentTransitionTarget()
throws ModelException {
TransitionTarget tt = parent.getParent();
if (tt instanceof State || tt instanceof Parallel) {
return tt;
} else if (tt instanceof History || tt instanceof Initial) {
return tt.getParent();
} else {
throw new ModelException("Unknown TransitionTarget subclass:"
+ tt.getClass().getName());
}
}
/**
* Execute this action instance.
*
* @param evtDispatcher The EventDispatcher for this execution instance
* @param errRep The ErrorReporter to broadcast any errors
* during execution.
* @param scInstance The state machine execution instance information.
* @param appLog The application Log.
* @param derivedEvents The collection to which any internal events
* arising from the execution of this action
* must be added.
*
* @throws ModelException If the execution causes the model to enter
* a non-deterministic state.
* @throws SCXMLExpressionException If the execution involves trying
* to evaluate an expression which is malformed.
*/
public abstract void execute(final EventDispatcher evtDispatcher,
final ErrorReporter errRep, final SCInstance scInstance,
final Log appLog, final Collection derivedEvents)
throws ModelException, SCXMLExpressionException;
/**
* Return the key under which the current document namespaces are saved
* in the parent state's context.
*
* @return The namespaces key
*/
protected static String getNamespacesKey() {
return NAMESPACES_KEY;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -