📄 status.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;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Set;
import org.apache.commons.scxml.model.State;
/**
* The encapsulation of the current state of a state machine.
*
*/
public class Status implements Serializable {
/**
* Serial version UID.
*/
private static final long serialVersionUID = 1L;
/**
* The states that are currently active.
*/
private Set states;
/**
* The events that are currently queued.
*/
private Collection events;
/**
* Have we reached a final configuration for this state machine.
*
* True - if all the states are final and there are not events
* pending from the last step. False - otherwise.
*
* @return Whether a final configuration has been reached.
*/
public boolean isFinal() {
boolean rslt = true;
for (Iterator i = states.iterator(); i.hasNext();) {
State s = (State) i.next();
if (!s.isFinal()) {
rslt = false;
break;
}
//the status is final only iff these are top-level states
if (s.getParent() != null) {
rslt = false;
break;
}
}
if (!events.isEmpty()) {
rslt = false;
}
return rslt;
}
/**
* Constructor.
*/
public Status() {
states = new HashSet();
events = new ArrayList();
}
/**
* Get the states configuration (leaf only).
*
* @return Returns the states configuration - simple (leaf) states only.
*/
public Set getStates() {
return states;
}
/**
* Get the events that are currently queued.
*
* @return The events that are currently queued.
*/
public Collection getEvents() {
return events;
}
/**
* Get the complete states configuration.
*
* @return complete states configuration including simple states and their
* complex ancestors up to the root.
*/
public Set getAllStates() {
return SCXMLHelper.getAncestorClosure(states, null);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -