📄 staxfunctionargumentproperty.java
字号:
/*****************************************************************************//* Software Testing Automation Framework (STAF) *//* (C) Copyright IBM Corp. 2005 *//* *//* This software is licensed under the Common Public License (CPL) V1.0. *//*****************************************************************************/package com.ibm.staf.service.stax;import java.util.LinkedList;// Create a new class STAXFunctionArgumentProperty which is used to store// the definition for a function argument propertypublic class STAXFunctionArgumentProperty{ public STAXFunctionArgumentProperty() { /* Do Nothing */ } public STAXFunctionArgumentProperty(String name, String description, String value, LinkedList data) { fName = name; fDescription = description; fValue = value; fData = data; } public String getName() { return fName; } public void setName(String name) { fName = name; } public String getDescription() { return fDescription; } public void setDescription(String description) { fDescription = description; } public String getValue() { return fValue; } public void setValue(String value) { fValue = value; } public LinkedList getData() { return fData; } public void setData(LinkedList data) { fData = data; } public void addData(STAXFunctionArgumentPropertyData data) { fData.add(data); } private String fName; private String fDescription = new String(); private String fValue = new String(); private LinkedList fData = new LinkedList();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -