📄 info_column.java
字号:
/******************************************************************************
* The contents of this file are subject to the Compiere License Version 1.1
* ("License"); You may not use this file except in compliance with the License
* You may obtain a copy of the License at http://www.compiere.org/license.html
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
* the specific language governing rights and limitations under the License.
* The Original Code is Compiere ERP & CRM Business Solution
* The Initial Developer of the Original Code is Jorg Janke and ComPiere, Inc.
* Portions created by Jorg Janke are Copyright (C) 1999-2001 Jorg Janke, parts
* created by ComPiere are Copyright (C) ComPiere, Inc.; All Rights Reserved.
* Contributor(s): ______________________________________.
*****************************************************************************/
package org.compiere.apps.search;
/**
* Info Column Details
*
* @author Jorg Janke
* @version $Id: Info_Column.java,v 1.2 2001/10/23 03:01:55 jjanke Exp $
*/
public class Info_Column
{
/**
* Create Info Column (r/o and not color column)
*
* @para colHeader Column Header
* @para colSQL SQL select code for column
* @para colClass class of column - determines display
*/
public Info_Column (String colHeader, String colSQL, Class colClass)
{
this(colHeader, colSQL, colClass, true, false, null);
} // Info_Column
/**
* Create Info Column (r/o and not color column)
*
* @para colHeader Column Header
* @para colSQL SQL select code for column
* @para colClass class of column - determines display
* @para IDcolSQL SQL select for the ID of the for the displayed column (KeyNamePair)
*/
public Info_Column (String colHeader, String colSQL, Class colClass, String IDcolSQL)
{
this(colHeader, colSQL, colClass, true, false, IDcolSQL);
} // Info_Column
/**
* Create Info Column
*
* @para colHeader Column Header
* @para colSQL SQL select code for column
* @para colClass class of column - determines display
* @para readOnly column is read only
* @para colorColumn if true, value of column determines foreground color
* @para IDcolSQL SQL select for the ID of the for the displayed column
*/
public Info_Column (String colHeader, String colSQL, Class colClass, boolean readOnly, boolean colorColumn, String IDcolSQL)
{
setColHeader(colHeader);
setColSQL(colSQL);
setColClass(colClass);
setReadOnly(readOnly);
setColorColumn(colorColumn);
setIDcolSQL(IDcolSQL);
} // Info_Column
private String m_colHeader;
private String m_colSQL;
private Class m_colClass;
private boolean m_readOnly;
private boolean m_colorColumn;
private String m_IDcolSQL = "";
public Class getColClass()
{
return m_colClass;
}
public String getColHeader()
{
return m_colHeader;
}
public String getColSQL()
{
return m_colSQL;
}
public boolean isReadOnly()
{
return m_readOnly;
}
public void setColClass(Class colClass)
{
m_colClass = colClass;
}
public void setColHeader(String colHeader)
{
m_colHeader = colHeader;
}
public void setColSQL(String colSQL)
{
m_colSQL = colSQL;
}
public void setReadOnly(boolean readOnly)
{
m_readOnly = readOnly;
}
public void setColorColumn(boolean colorColumn)
{
m_colorColumn = colorColumn;
}
public boolean isColorColumn()
{
return m_colorColumn;
}
/**
* Add ID column SQL for the displayed column
* The Class for this should be KeyNamePair
*/
public void setIDcolSQL(String IDcolSQL)
{
m_IDcolSQL = IDcolSQL;
if (m_IDcolSQL == null)
m_IDcolSQL = "";
}
public String getIDcolSQL()
{
return m_IDcolSQL;
}
public boolean isIDcol()
{
return m_IDcolSQL.length() > 0;
}
} // infoColumn
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -