/****************************************************************************** * Product: Adempiere ERP & CRM Smart Business Solution * * Copyright (C) 1999-2006 ComPiere, Inc. All Rights Reserved. * * This program is free software; you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * * that it will be useful, but WITHOUT ANY WARRANTY; without even the implied * * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * * with this program; if not, write to the Free Software Foundation, Inc., * * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * * For the text or an alternative of this public license, you may reach us * * ComPiere, Inc., 2620 Augustine Dr. #245, Santa Clara, CA 95054, USA * * or via info@compiere.org or http://www.compiere.org/license.html * *****************************************************************************/ package org.compiere.report; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.util.ArrayList; import java.util.Properties; import java.util.logging.Level; import org.compiere.model.X_PA_ReportColumnSet; import org.compiere.util.DB; import org.compiere.util.Util; /** * Financial Report Column Set Model * * @author Jorg Janke * @version $Id: MReportColumnSet.java,v 1.3 2006/08/03 22:16:52 jjanke Exp $ */ public class MReportColumnSet extends X_PA_ReportColumnSet { /** * generated serial id */ private static final long serialVersionUID = -3496781398287709753L; /** * UUID based Constructor * @param ctx Context * @param PA_ReportColumnSet_UU UUID key * @param trxName Transaction */ public MReportColumnSet(Properties ctx, String PA_ReportColumnSet_UU, String trxName) { super(ctx, PA_ReportColumnSet_UU, trxName); if (!Util.isEmpty(PA_ReportColumnSet_UU)) loadColumns(); } /** * Constructor * @param ctx context * @param PA_ReportColumnSet_ID id * @param trxName transaction */ public MReportColumnSet (Properties ctx, int PA_ReportColumnSet_ID, String trxName) { super (ctx, PA_ReportColumnSet_ID, trxName); if (PA_ReportColumnSet_ID != 0) loadColumns(); } // MReportColumnSet /** * @param ctx * @param rs * @param trxName */ public MReportColumnSet (Properties ctx, ResultSet rs, String trxName) { super (ctx, rs, trxName); } /** Contained Columns */ private MReportColumn[] m_columns = null; /** * Load contained columns (MReportColumn) */ private void loadColumns() { ArrayList list = new ArrayList(); String sql = "SELECT * FROM PA_ReportColumn WHERE PA_ReportColumnSet_ID=? AND IsActive='Y' ORDER BY SeqNo"; PreparedStatement pstmt = null; ResultSet rs = null; try { pstmt = DB.prepareStatement(sql, get_TrxName()); pstmt.setInt(1, getPA_ReportColumnSet_ID()); rs = pstmt.executeQuery(); while (rs.next()) list.add(new MReportColumn (getCtx(), rs, null)); } catch (Exception e) { log.log(Level.SEVERE, sql, e); } finally { DB.close(rs, pstmt); rs = null; pstmt = null; } // m_columns = new MReportColumn[list.size()]; list.toArray(m_columns); if (log.isLoggable(Level.FINEST)) log.finest("ID=" + getPA_ReportColumnSet_ID() + " - Size=" + list.size()); } // loadColumns /** * Get Columns * @return columns */ public MReportColumn[] getColumns() { return m_columns; } // getColumns /** * List Info */ public void list() { System.out.println(toString()); if (m_columns == null) return; for (int i = 0; i < m_columns.length; i++) System.out.println("- " + m_columns[i].toString()); } // list /** * String Representation * @return info */ @Override public String toString () { StringBuilder sb = new StringBuilder ("MReportColumnSet[") .append(get_ID()).append(" - ").append(getName()) .append ("]"); return sb.toString (); } } // MReportColumnSet