1 package spoon.examples.dbaccess.annotation;2 3 4 public @interface DBAccess {5 DBType type();6 String database();7 String username();8 String password();9 String tableName();10 }11