📄 staxfunctionargumentpropertydata.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 STAXFunctionArgumentPropertyData which is used to store// the definitions for a function argument property datapublic class STAXFunctionArgumentPropertyData{ public STAXFunctionArgumentPropertyData() { /* Do Nothing */ } public STAXFunctionArgumentPropertyData(String type, String value) { fType = type; fValue = value; } public String getType() { return fType; } public void setType(String type) { fType = type; } 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 fType; private String fValue = new String(); private LinkedList fData = new LinkedList();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -