/** * Product: Posterita Web-Based POS and Adempiere Plugin * Copyright (C) 2007 Posterita Ltd * This file is part of POSterita * * POSterita is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ package org.compiere.model; import java.sql.ResultSet; import java.util.Properties; public class MWebMenu extends X_U_WebMenu { /** * */ private static final long serialVersionUID = -7370745711964160621L; /** * UUID based Constructor * @param ctx Context * @param U_WebMenu_UU UUID key * @param trxName Transaction */ public MWebMenu(Properties ctx, String U_WebMenu_UU, String trxName) { super(ctx, U_WebMenu_UU, trxName); } public MWebMenu(Properties ctx, int U_WebMenu_ID, String trxName) { super(ctx, U_WebMenu_ID, trxName); } public MWebMenu(Properties ctx, ResultSet rs, String trxName) { super(ctx, rs, trxName); } }