代码搜索:State Machine
找到约 10,000 项符合「State Machine」的源代码
代码结果 10,000
www.eeworm.com/read/405279/2293929
h state.h
/*
* Copyright (c) 1991,1993 Regents of the University of California.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted p
www.eeworm.com/read/405279/2293936
cc state.cc
/*
* Copyright (c) 1991,1993 Regents of the University of California.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted p
www.eeworm.com/read/404784/2301261
java state.java
package com.dagang.bidsys.model;
import java.util.Set;
public class State {
private int id;
//种类的名称
private String name;
//当前种类下的项目
private Set items;
public int getId
www.eeworm.com/read/404039/2307737
java state.java
//: statemachine2:State.java
package statemachine2;
public class State {
private String name;
public State(String nm) { name = nm; }
public String toString() { return name; }
} ///:~
www.eeworm.com/read/404039/2307940
java state.java
//: statemachine:State.java
// A State has an operation, and can be moved
// into the next State given an Input:
package statemachine;
public interface State {
void run();
State next(Input
www.eeworm.com/read/403510/2311073
java state.java
/* -*- tab-width: 4 -*-
*
* Electric(tm) VLSI Design System
*
* File: State.java
*
* Copyright (c) 2003 Sun Microsystems and Static Free Software
*
* Electric(tm) is free software; you can red
www.eeworm.com/read/403193/2313898
java state.java
package org.yeeku.model;
import java.io.Serializable;
import java.util.Set;
import java.util.HashSet;
/**
* @author yeeku.H.lee kongyeeku@163.com
* @version 1.0
* Copyright (C), 2005