// Process the annotations.
MetadataAnnotation tables = getAnnotation(PLSQLTables.class);
if (tables != null) {
for (Object table : tables.getAttributeArray("value")) {
getProject().addComplexMetadataType(new PLSQLTableMetadata((MetadataAnnotation) table, this));
}
}
MetadataAnnotation table = getAnnotation(PLSQLTable.class);
if (table != null) {
getProject().addComplexMetadataType(new PLSQLTableMetadata(table, this));
}
// Oracle advanced JDBC types.
// Process XML.