~ubuntu-branches/ubuntu/wily/libhibernate3-java/wily-proposed

« back to all changes in this revision

Viewing changes to test/org/hibernate/test/interfaceproxy/Folder.java

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2007-10-14 14:43:34 UTC
  • Revision ID: james.westby@ubuntu.com-20071014144334-eamc8i0q10gs1aro
Tags: upstream-3.2.5
ImportĀ upstreamĀ versionĀ 3.2.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//$Id: Folder.java 4407 2004-08-22 01:20:08Z oneovthafew $
 
2
package org.hibernate.test.interfaceproxy;
 
3
 
 
4
/**
 
5
 * @author Gavin King
 
6
 */
 
7
public interface Folder extends Item {
 
8
        /**
 
9
         * @return Returns the parent.
 
10
         */
 
11
        public Folder getParent();
 
12
 
 
13
        /**
 
14
         * @param parent The parent to set.
 
15
         */
 
16
        public void setParent(Folder parent);
 
17
}
 
 
b'\\ No newline at end of file'