parametervalue.java
来自「一个eclipse插件源代码。用于web开发」· Java 代码 · 共 178 行
JAVA
178 行
/*
* $Header: /home/cvs/WEBPUMP2.0/WebPumpIDE_Src/WebPumpIDE/src/com/webpump/ui/bind/editors/ParameterValue.java,v 1.1.1.1 2004/07/01 09:07:41 wang_j Exp $
* $Revision: 1.1.1.1 $
* $Date: 2004/07/01 09:07:41 $
*
* ====================================================================
*
* The NanJing HopeRun(IT-FOREST) Software License, Version 2.0.0
*
* Copyright 2003-2004 by NanJing HopeRun(IT-FOREST) Information System Co., Ltd, CHINA and
* IT Forest Corporation
* All rights reserved.
*
* This software is the confidential and proprietary information of
* HopeRun(IT-FOREST) Information System Co., Ltd, CHINA and IT Forest Corporation.
* You shall not disclose such Confidential Information and shall use it only in
* accordance with the terms of the license agreement you entered into with
* HopeRun(IT-FOREST) Information System Co., Ltd, CHINA and IT Forest Corporation.
*/
package com.webpump.ui.bind.editors;
/**
* Class for transfer value between table and dialog .
*
* @author luo_sa
* @version 2.0.0 2004-2-11
*/
public class ParameterValue {
/** value of ObjectName*/
private String m_strObjectName;
/** value of Type*/
private String m_strType;
/** value of VariableName*/
private String m_strVariableName;
/** value of VariableType*/
private String m_strVariableType;
/** value of DefaultValue*/
private String m_strDefaultValue;
/** value of Description*/
private String m_strDescription;
/** value of filter*/
private boolean filterButtonSelected;
/**
* reset all the value
*
*/
public void reset() {
m_strObjectName = null;
m_strType = null;
m_strVariableName = null;
m_strVariableType = null;
m_strDefaultValue = null;
m_strDescription = null;
}
/**
* Get value of ObjectName
* @return m_strObjectName
*/
public String getObjectName() {
return m_strObjectName;
}
/**
* Get value of Type
* @return m_strType
*/
public String getType(){
return m_strType;
}
/**
* Get value of VariableName
* @return m_strVariableName
*/
public String getVariableName() {
return m_strVariableName;
}
/**
* Get value of VariableType
* @return m_strVariableType
*/
public String getVariableType() {
return m_strVariableType;
}
/**
* Get value of DefaultValue
* @return m_strDefaultValue
*/
public String getDefaultValue() {
return m_strDefaultValue;
}
/**
* Get value of Description
* @return m_strDescription
*/
public String getDescription() {
return m_strDescription;
}
/**
* Get value of filterButtonSelected
* @return filterButtonSelected
*/
public boolean isFilterButtonSelected() {
return filterButtonSelected;
}
/**
* Set value of ObjectName
* @param objectname
*/
public void setObjectName(String objectname) {
m_strObjectName = objectname;
}
/**
* Set value of Type
* @param type
*/
public void setType(String type) {
m_strType = type;
}
/**
* Set value of VariableName
* @param variablename
*/
public void setVariableName(String variablename) {
m_strVariableName = variablename;
}
/**
* Set value of VariableType
* @param variabletype
*/
public void setVariableType(String variabletype) {
m_strVariableType = variabletype;
}
/**
* Set value of DefaultValue
* @param defaultvalue
*/
public void setDefaultValue(String defaultvalue) {
m_strDefaultValue = defaultvalue;
}
/**
* Set value of Description
* @param description
*/
public void setDescription(String description) {
m_strDescription = description;
}
/**
* Set value of filterButtonSelected
* @param filterbuttonselected
*/
public void setFilterButtonSelected(boolean filterbuttonselected) {
filterButtonSelected = filterbuttonselected;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?