
test.org.neodatis.odb.test.nullobject.GenericClass 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.nullobject;
public class GenericClass {
private Object object;
private Object[] objects;
public GenericClass(Object object) {
super();
this.object = object;
this.objects = new Object[10];
}
public Object getObject() {
return object;
}
public void setObject(Object object) {
this.object = object;
}
public Object[] getObjects() {
return objects;
}
public void setObjects(Object[] objects) {
this.objects = objects;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy