📄 stateimpl.java
字号:
/* * @(#)StateImpl.java 1.10 05/11/17 * * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package com.sun.corba.se.spi.orbutil.fsm ;import com.sun.corba.se.impl.orbutil.fsm.NameBase ;import java.util.Map ;import java.util.HashMap ;import java.util.Set ;import java.util.HashSet ;import com.sun.corba.se.impl.orbutil.fsm.GuardedAction ;import com.sun.corba.se.impl.orbutil.fsm.NameBase ;/** Base class for all states in a StateEngine. This must be used* as the base class for all states in transitions added to a StateEngine.*/public class StateImpl extends NameBase implements State { private Action defaultAction ; private State defaultNextState ; private Map inputToGuardedActions ; public StateImpl( String name ) { super( name ) ; defaultAction = null ; inputToGuardedActions = new HashMap() ; } public void preAction( FSM fsm ) { } public void postAction( FSM fsm ) { } // Methods for use only by StateEngineImpl. public State getDefaultNextState() { return defaultNextState ; } public void setDefaultNextState( State defaultNextState ) { this.defaultNextState = defaultNextState ; } public Action getDefaultAction() { return defaultAction ; } public void setDefaultAction( Action defaultAction ) { this.defaultAction = defaultAction ; } public void addGuardedAction( Input in, GuardedAction ga ) { Set gas = (Set)inputToGuardedActions.get( in ) ; if (gas == null) { gas = new HashSet() ; inputToGuardedActions.put( in, gas ) ; } gas.add( ga ) ; } public Set getGuardedActions( Input in ) { return (Set)inputToGuardedActions.get( in ) ; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -