hibernatecurrentstep.java
来自「Java编译osworkflow工作流系统的安装和源代码」· Java 代码 · 共 24 行
JAVA
24 行
/* * Copyright (c) 2002-2003 by OpenSymphony * All rights reserved. */package com.opensymphony.workflow.spi.hibernate;/** * This class exists to seperate the persistence of the Steps. * By seperating out the Current Step from the Previous �* Step classes, they can be easily written into seperate tables. �* @see {@link HibernateHistoryStep} */public class HibernateCurrentStep extends HibernateStep { //~ Constructors /////////////////////////////////////////////////////////// public HibernateCurrentStep() { } public HibernateCurrentStep(HibernateStep step) { super(step); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?