KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > bull > eclipse > jonas > actions > hibernate > CompositePKValue


1 /*
2  * Created on 18 févr. 2005
3  *
4  * TODO To change the template for this generated file go to
5  * Window - Preferences - Java - Code Style - Code Templates
6  */

7 package com.bull.eclipse.jonas.actions.hibernate;
8
9 import java.util.Collection JavaDoc;
10
11 /**
12  * @author riase
13  *
14  * TODO To change the template for this generated type comment go to
15  * Window - Preferences - Java - Code Style - Code Templates
16  */

17 public class CompositePKValue {
18     private String JavaDoc javaName;
19     private String JavaDoc columnName;
20     
21
22
23     public String JavaDoc getColumnName() {
24         return columnName;
25     }
26     public void setColumnName(String JavaDoc columnName) {
27         this.columnName = columnName;
28     }
29     public String JavaDoc getJavaName() {
30         return javaName;
31     }
32     public void setJavaName(String JavaDoc javaName) {
33         this.javaName = javaName;
34     }
35 }
36
Popular Tags