/* * This code is distributed under The GNU Lesser General Public License (LGPLv3) * Please visit GNU site for LGPLv3 http://www.gnu.org/copyleft/lesser.html * * Copyright Denis Pavlov 2009 * Web: http://www.genericdtoassembler.org * SVN: https://svn.code.sf.net/p/geda-genericdto/code/trunk/ * SVN (mirror): http://geda-genericdto.googlecode.com/svn/trunk/ */ package com.inspiresoftware.lib.dto.geda.assembler.examples.collections; import org.junit.Ignore; import java.util.Collection; /** * . * <p/> * User: Denis Pavlov * Date: Jan 25, 2010 * Time: 1:55:45 PM */ @Ignore public class TestEntity7CollectionClass { private Collection<TestEntity7CollectionSubClass> collection; /** {@inheritDoc} */ public Collection<TestEntity7CollectionSubClass> getCollection() { return collection; } /** {@inheritDoc} */ public void setCollection(final Collection<TestEntity7CollectionSubClass> collection) { this.collection = collection; } }