![JAR search and dependency download from the Maven repository](/logo.png)
spoon.examples.dbaccess.src.Person Maven / Gradle / Ivy
The newest version!
package spoon.examples.dbaccess.src;
import spoon.examples.dbaccess.annotation.DBAccess;
import spoon.examples.dbaccess.annotation.DBType;
@DBAccess(type = DBType.RELATIONAL, database = "test", username = "renaud", password = "", tableName = "c_instances")
public class Person {
String key;
public Person(String key) {
this.key = key;
}
public String getLastName() {
return null;
}
public String getFirstName() {
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy