📄 guardedaction.java
字号:
/* * @(#)GuardedAction.java 1.8 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.impl.orbutil.fsm ;import com.sun.corba.se.spi.orbutil.fsm.Guard ;import com.sun.corba.se.spi.orbutil.fsm.GuardBase ;import com.sun.corba.se.spi.orbutil.fsm.Input ;import com.sun.corba.se.spi.orbutil.fsm.Action ;import com.sun.corba.se.spi.orbutil.fsm.State ;import com.sun.corba.se.spi.orbutil.fsm.FSM ;public class GuardedAction { private static Guard trueGuard = new GuardBase( "true" ) { public Guard.Result evaluate( FSM fsm, Input in ) { return Guard.Result.ENABLED ; } } ; private Guard guard ; private Action action ; private State nextState ; public GuardedAction( Action action, State nextState ) { this.guard = trueGuard ; this.action = action ; this.nextState = nextState ; } public GuardedAction( Guard guard, Action action, State nextState ) { this.guard = guard ; this.action = action ; this.nextState = nextState ; } public String toString() { return "GuardedAction[action=" + action + " guard=" + guard + " nextState=" + nextState + "]" ; } public Action getAction() { return action ; } public Guard getGuard() { return guard ; } public State getNextState() { return nextState ; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -