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

« back to all changes in this revision

Viewing changes to src/org/hibernate/mapping/TypeDef.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
package org.hibernate.mapping;
 
2
 
 
3
import java.io.Serializable;
 
4
import java.util.Properties;
 
5
 
 
6
/**
 
7
 * Placeholder for typedef information
 
8
 */
 
9
public class TypeDef implements Serializable {
 
10
 
 
11
        private String typeClass;
 
12
        private Properties parameters;
 
13
 
 
14
        public TypeDef(String typeClass, Properties parameters) {
 
15
                this.typeClass = typeClass;
 
16
                this.parameters = parameters;
 
17
        }
 
18
 
 
19
        public Properties getParameters() {
 
20
                return parameters;
 
21
        }
 
22
        public String getTypeClass() {
 
23
                return typeClass;
 
24
        }
 
25
 
 
26
}