~raginggoblin/infolog/infolog

« back to all changes in this revision

Viewing changes to InfologServer/lib/hibernate-distribution-3.3.2.GA/project/testsuite/src/test/java/org/hibernate/test/event/collection/association/bidirectional/onetomany/ParentWithBidirectionalOneToManySubclass.java

  • Committer: Raging Goblin
  • Date: 2013-11-16 16:51:32 UTC
  • Revision ID: raging_goblin-20131116165132-weujnptzc88uy4ah
Mavenized the project, now using shared project InfologSync

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//$Id: $
2
 
/*
3
 
 * Hibernate, Relational Persistence for Idiomatic Java
4
 
 *
5
 
 * Copyright (c) 2007, Red Hat Middleware LLC or third-party contributors as
6
 
 * indicated by the @author tags or express copyright attribution statements
7
 
 * applied by the authors.
8
 
 *
9
 
 * All third-party contributions are distributed under license by Red Hat
10
 
 * Middleware LLC.  This copyrighted material is made available to anyone
11
 
 * wishing to use, modify, copy, or redistribute it subject to the terms
12
 
 * and conditions of the GNU Lesser General Public License, as published by
13
 
 * the Free Software Foundation.  This program is distributed in the hope
14
 
 * that it will be useful, but WITHOUT ANY WARRANTY; without even the
15
 
 * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16
 
 *
17
 
 * See the GNU Lesser General Public License for more details.  You should
18
 
 * have received a copy of the GNU Lesser General Public License along with
19
 
 * this distribution; if not, write to: Free Software Foundation, Inc.
20
 
 * 51 Franklin Street, Fifth Floor Boston, MA  02110-1301  USA
21
 
 */
22
 
package org.hibernate.test.event.collection.association.bidirectional.onetomany;
23
 
 
24
 
import java.util.Collection;
25
 
import java.util.Iterator;
26
 
 
27
 
import org.hibernate.test.event.collection.Child;
28
 
import org.hibernate.test.event.collection.AbstractParentWithCollection;
29
 
 
30
 
/**
31
 
 *
32
 
 * @author Gail Badner
33
 
 */
34
 
public class ParentWithBidirectionalOneToManySubclass extends ParentWithBidirectionalOneToMany {
35
 
        public ParentWithBidirectionalOneToManySubclass() {
36
 
        }
37
 
 
38
 
        public ParentWithBidirectionalOneToManySubclass(String name) {
39
 
                super( name );
40
 
        }
41
 
 
42
 
}
 
 
b'\\ No newline at end of file'