代码搜索结果
找到约 10,000 项符合
State Machine 的代码
state.java
public class State {
public static final byte GM_NULL=0;
public static final byte GM_NEW=1;
public static final byte GM_CITYLOAD=16;
public static final byte GM_CITY=17;
public static
state.java
package com.javapatterns.state;
public interface State {
void sampleOperation();
/**
* @link
* @shapeType PatternLink
* @pattern State
* @supplierRole
state.html
WELCOME TO BANKING
state.html
WELCOME TO BANKING
state.java
package globle;
public enum State{
START, INASSIGN, INCOMMENT, INNUM, INID, INCHAR, INRANGE, DONE
}