⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 crondata1.java

📁 Software Testing Automation Framework (STAF)的开发代码
💻 JAVA
字号:
/*****************************************************************************//* 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -