📄 columninfo.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.minigrid;
/**
* Info Column Details
*
* @author Jorg Janke
* @version $Id: ColumnInfo.java,v 1.3 2002/02/08 05:43:15 jjanke Exp $
*/
public class ColumnInfo
{
/**
* Create Info Column (r/o and not color column)
*
* @param colHeader Column Header
* @param colSQL SQL select code for column
* @param colClass class of column - determines display
*/
public ColumnInfo (String colHeader, String colSQL, Class colClass)
{
this(colHeader, colSQL, colClass, true, false, null);
} // ColumnInfo
/**
* Create Info Column (r/o and not color column)
*
* @param colHeader Column Header
* @param colSQL SQL select code for column
* @param colClass class of column - determines display
* @param keyPairColSQL SQL select for the ID of the for the displayed column
*/
public ColumnInfo (String colHeader, String colSQL, Class colClass, String keyPairColSQL)
{
this(colHeader, colSQL, colClass, true, false, keyPairColSQL);
} // ColumnInfo
/**
* Create Info Column
*
* @param colHeader Column Header
* @param colSQL SQL select code for column
* @param colClass class of column - determines display
* @param readOnly column is read only
* @param colorColumn if true, value of column determines foreground color
* @param keyPairColSQL SQL select for the ID of the for the displayed column
*/
public ColumnInfo (String colHeader, String colSQL, Class colClass, boolean readOnly, boolean colorColumn, String keyPairColSQL)
{
setColHeader(colHeader);
setColSQL(colSQL);
setColClass(colClass);
setReadOnly(readOnly);
setColorColumn(colorColumn);
setKeyPairColSQL(keyPairColSQL);
} // ColumnInfo
private String m_colHeader;
private String m_colSQL;
private Class m_colClass;
private boolean m_readOnly;
private boolean m_colorColumn;
private String m_keyPairColSQL = "";
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
* @param keyPairColSQL
*/
public void setKeyPairColSQL(String keyPairColSQL)
{
m_keyPairColSQL = keyPairColSQL;
if (m_keyPairColSQL == null)
m_keyPairColSQL = "";
}
public String getKeyPairColSQL()
{
return m_keyPairColSQL;
}
public boolean isKeyPairCol()
{
return m_keyPairColSQL.length() > 0;
}
} // infoColumn
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -