
test.org.neodatis.odb.test.cyclic.ClassA Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neodatis-odb Show documentation
Show all versions of neodatis-odb Show documentation
The NeoDatis Object Database
/**
*
*/
package org.neodatis.odb.test.cyclic;
/**
* @author olivier
*
*/
public class ClassA {
String name;
ClassB classb;
public ClassA() {
super();
}
public ClassA(ClassB classb, String name) {
super();
this.classb = classb;
this.name = name;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public ClassB getClassb() {
return classb;
}
public void setClassb(ClassB classb) {
this.classb = classb;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy