1 7 package com.bull.eclipse.jonas.actions.hibernate; 8 9 import java.util.Collection ; 10 11 17 public class CompositePKValue { 18 private String javaName; 19 private String columnName; 20 21 22 23 public String getColumnName() { 24 return columnName; 25 } 26 public void setColumnName(String columnName) { 27 this.columnName = columnName; 28 } 29 public String getJavaName() { 30 return javaName; 31 } 32 public void setJavaName(String javaName) { 33 this.javaName = javaName; 34 } 35 } 36 | Popular Tags |