KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > spoon > examples > dbaccess > annotation > DBAccess


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