代码搜索:Hibernate 开发教程
找到约 10,000 项符合「Hibernate 开发教程」的源代码
代码结果 10,000
www.eeworm.com/read/163959/5504980
java super.java
package org.hibernate.test.legacy;
public class Super {
protected String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
www.eeworm.com/read/163959/5504984
java custom.java
//$Id: Custom.java,v 1.1 2004/09/26 05:18:25 oneovthafew Exp $
package org.hibernate.test.legacy;
public class Custom implements Cloneable {
String id;
String name;
public Object clone() {
tr
www.eeworm.com/read/163959/5504985
java k.java
//$Id: K.java,v 1.1 2004/09/26 05:18:25 oneovthafew Exp $
package org.hibernate.test.legacy;
import java.util.Set;
/**
* @author Gavin King
*/
public class K {
Long id;
Set is;
}
www.eeworm.com/read/163959/5504994
java i.java
//$Id: I.java,v 1.1 2004/09/26 05:18:25 oneovthafew Exp $
package org.hibernate.test.legacy;
/**
* @author Gavin King
*/
public class I {
Long id;
String name;
char type;
K parent;
}
www.eeworm.com/read/163959/5504996
java statisticstest.java
//$Id: StatisticsTest.java,v 1.1 2004/09/26 05:18:25 oneovthafew Exp $
package org.hibernate.test.legacy;
import junit.framework.Test;
import junit.framework.TestSuite;
import junit.textui.TestRunne
www.eeworm.com/read/163959/5505012
java medication.java
package org.hibernate.test.legacy;
/**
* @author hbm2java
*/
public class Medication extends org.hibernate.test.legacy.Intervention {
org.hibernate.test.legacy.Drug prescribedDrug;
org.hi
www.eeworm.com/read/163959/5505014
java w.java
package org.hibernate.test.legacy;
import java.util.Set;
public class W {
private long id;
private Set zeds;
/**
*
*/
public W() {
}
/**
* @return
*/
public long getId() {
ret
www.eeworm.com/read/163959/5505019
java nameable.java
//$Id: Nameable.java,v 1.1 2004/09/26 05:18:25 oneovthafew Exp $
package org.hibernate.test.legacy;
/**
*
*/
public interface Nameable {
public String getName();
public void setName(String name);
www.eeworm.com/read/163959/5505021
java querybyexampletest.java
//$Id: QueryByExampleTest.java,v 1.1 2004/09/26 05:18:25 oneovthafew Exp $
package org.hibernate.test.legacy;
import java.util.List;
import junit.framework.Test;
import junit.framework.TestSuite;
im
www.eeworm.com/read/163959/5505029
java newerperformancetest.java
//$Id: NewerPerformanceTest.java,v 1.1 2004/09/26 05:18:25 oneovthafew Exp $
package org.hibernate.test.legacy;
import java.io.Serializable;
import java.sql.Connection;
import java.sql.PreparedStatem