// Wanda POS - Africa's Gift to the World // Copyright (c) 2014-2015 Wanda POS // http://www.wandaapos.com // // This file is part of Wanda POS // // Wanda POS 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 3 of the License, or // (at your option) any later version. // // Wanda POS 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 Wanda POS. If not, see <http://www.gnu.org/licenses/>. package com.openbravo.pos.ticket; import com.openbravo.basic.BasicException; import com.openbravo.data.loader.DataRead; import com.openbravo.data.loader.IKeyed; import com.openbravo.data.loader.ImageUtils; import com.openbravo.data.loader.SerializerRead; import java.awt.image.*; /** * * @author Adrian * @version */ public class CategoryInfo implements IKeyed { private static final long serialVersionUID = 8612449444103L; private String m_sID; private String m_sName; private String m_sTextTip; private BufferedImage m_Image; private Boolean m_bCatShowName; /** Creates new CategoryInfo * @param id * @param name * @param image * @param texttip * @param catshowname */ public CategoryInfo(String id, String name, BufferedImage image, String texttip, Boolean catshowname) { m_sID = id; m_sName = name; m_Image = image; m_sTextTip = texttip; m_bCatShowName = catshowname; } /** * * @return */ @Override public Object getKey() { return m_sID; } /** * * @param sID */ public void setID(String sID) { m_sID = sID; } /** * * @return */ public String getID() { return m_sID; } /** * * @return */ public String getName() { return m_sName; } /** * * @param sName */ public void setName(String sName) { m_sName = sName; } // ADDED JDL 13.04.13 ************* /** * * @return */ public String getTextTip() { return m_sTextTip; } /** * * @param sName */ public void setTextTip(String sName) { m_sTextTip = sName; } /** * * @return */ public Boolean getCatShowName() { return m_bCatShowName; } /** * * @param bcatshowname */ public void setCatShowName(Boolean bcatshowname) { m_bCatShowName = bcatshowname; } // ******************************* /** * * @return */ public BufferedImage getImage() { return m_Image; } /** * * @param img */ public void setImage(BufferedImage img) { m_Image = img; } @Override public String toString() { return m_sName; } /** * * @return */ public static SerializerRead getSerializerRead() { return new SerializerRead() {@Override public Object readValues(DataRead dr) throws BasicException { return new CategoryInfo(dr.getString(1), dr.getString(2), ImageUtils.readImage(dr.getBytes(3)),dr.getString(4),dr.getBoolean(5)); }}; } }