/** * Copyright (c) 2009-2014 Câmara dos Deputados. Todos os direitos reservados. * * e-Democracia é um software livre; você pode redistribuí-lo e/ou modificá-lo dentro * dos termos da Licença Pública Geral Menor GNU como publicada pela Fundação do * Software Livre (FSF); na versão 2.1 da Licença, ou (na sua opinião) qualquer versão. * * Este programa é distribuído na esperança de que possa ser útil, mas SEM NENHUMA GARANTIA; * sem uma garantia implícita de ADEQUAÇÃO a qualquer MERCADO ou APLICAÇÃO EM PARTICULAR. * Veja a Licença Pública Geral Menor GNU para maiores detalhes. */ package br.gov.camara.edemocracia.portlets.wikilegis.model.impl; import br.gov.camara.edemocracia.portlets.wikilegis.model.Artigo; /** * The model implementation for the Artigo service. Represents a row in the "CDWL_Artigo" database table, with each column mapped to a property of this class. * * <p> * Helper methods and all application logic should be put in this class. Whenever methods are added, rerun ServiceBuilder to copy their definitions into the {@link br.gov.camara.edemocracia.portlets.wikilegis.model.Artigo} interface. * </p> * * <p> * Never reference this class directly. All methods that expect a artigo model instance should use the {@link Artigo} interface instead. * </p> */ public class ArtigoImpl extends ArtigoBaseImpl { public ArtigoImpl() { } }