?? patternt.java
字號:
// This is copyrighted source file, part of Rakiura JFern package. // See the file LICENSE for copyright information and the terms and conditions// for copying, distributing and modifications of Rakiura JFern package.// Copyright (C) 1999-2002 by Mariusz Nowostawski and others [http://www.rakiura.org]package org.rakiura.cpn.lib;/**/import org.rakiura.cpn.BasicNet;import org.rakiura.cpn.Transition;/** * Base abstract class for components. This is an abstract pattern * with single transition. It is being used by all other, more complex * net patterns. * *<br><br> * PatterT.java<br> * Created: Mon Oct 2 22:03:31 2000<br> * * @author Mariusz Nowostawski * @version 2.1.0 $Revision: 1.2 $ */public abstract class PatternT extends BasicNet { protected Transition transition; public PatternT() { this.transition = new Transition(); add(transition); } } // PatternT//////////////////// end of file ////////////////////
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -