/****************************************************************************** * 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.model; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.util.Properties; import java.util.logging.Level; import org.compiere.util.CLogger; import org.compiere.util.DB; /** * (Disk) Tree Node Model * * @author Jorg Janke * @version $Id: MTree_Node.java,v 1.3 2006/07/30 00:58:37 jjanke Exp $ */ public class MTree_Node extends X_AD_TreeNode { /** * */ private static final long serialVersionUID = 5473815124433234331L; /** * Get Tree Node * @param tree tree * @param Node_ID node * @return node or null */ public static MTree_Node get (MTree_Base tree, int Node_ID) { MTree_Node retValue = null; String sql = "SELECT * FROM AD_TreeNode WHERE AD_Tree_ID=? AND Node_ID=?"; PreparedStatement pstmt = null; ResultSet rs = null; try { pstmt = DB.prepareStatement (sql, tree.get_TrxName()); pstmt.setInt (1, tree.getAD_Tree_ID()); pstmt.setInt (2, Node_ID); rs = pstmt.executeQuery (); if (rs.next ()) retValue = new MTree_Node (tree.getCtx(), rs, tree.get_TrxName()); } catch (Exception e) { s_log.log(Level.SEVERE, sql, e); } finally { DB.close(rs, pstmt); rs = null; pstmt = null; } return retValue; } // get /** Static Logger */ private static CLogger s_log = CLogger.getCLogger (MTree_Node.class); /** * UUID based Constructor * @param ctx Context * @param AD_TreeNode_UU UUID key * @param trxName Transaction */ public MTree_Node(Properties ctx, String AD_TreeNode_UU, String trxName) { super(ctx, AD_TreeNode_UU, trxName); } /** * Load Constructor * @param ctx context * @param rs result set * @param trxName transaction */ public MTree_Node (Properties ctx, ResultSet rs, String trxName) { super(ctx, rs, trxName); } // MTree_Node /** * Full Constructor * @param tree tree * @param Node_ID node */ public MTree_Node (MTree_Base tree, int Node_ID) { super (tree.getCtx(), 0, tree.get_TrxName()); setClientOrg(tree); setAD_Tree_ID (tree.getAD_Tree_ID()); setNode_ID(Node_ID); // Add to root setParent_ID(0); setSeqNo (0); } // MTree_Node } // MTree_Node