crondata1.java
来自「Software Testing Automation Framework (S」· Java 代码 · 共 65 行
JAVA
65 行
/*****************************************************************************//* Software Testing Automation Framework (STAF) *//* (C) Copyright IBM Corp. 2006 *//* *//* This software is licensed under the Common Public License (CPL) V1.0. *//*****************************************************************************/package com.ibm.staf.service.cron;import java.util.*;public class CronData1 implements java.io.Serializable{ // CAUTION! Adding fields to this class will make older versions of the // serialized class incompatible with the new version. If a new field // is required for this class, then create a new class with the new field, // called CronData2, and if the serialized file being read in during // service startup is of object type CronData1, then read it in and convert // it into object type CronData2. String fOriginMachine; String fMachine; boolean fPythonMachine = true; String fService; boolean fPythonService = true; String fRequest; boolean fPythonRequest = true; String fPrepare; Vector fMinute = new Vector(); Vector fHour = new Vector(); Vector fDay = new Vector(); Vector fMonth = new Vector(); Vector fWeekday = new Vector(); boolean fOnce = false; // Added on CronData1 String fDescription; // Added on CronData1 public CronData1() { super(); } public CronData1(String description, String originMachine, String machine, boolean pythonMachine, String service, boolean pythonService, String request, boolean pythonRequest, String prepare, Vector minute, Vector hour, Vector day, Vector month, Vector weekday, boolean once) { this.fDescription = description; this.fOriginMachine = originMachine; this.fMachine = machine; this.fPythonMachine = pythonMachine; this.fService = service; this.fPythonService = pythonService; this.fRequest = request; this.fPythonRequest = pythonRequest; this.fPrepare = prepare; this.fMinute = minute; this.fHour = hour; this.fDay = day; this.fMonth = month; this.fWeekday = weekday; this.fOnce = once; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?