org.teiid.metadata.Table.setAnnotation()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(1.3k)|赞(0)|评价(0)|浏览(294)

本文整理了Java中org.teiid.metadata.Table.setAnnotation()方法的一些代码示例,展示了Table.setAnnotation()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Table.setAnnotation()方法的具体详情如下:
包路径:org.teiid.metadata.Table
类名称:Table
方法名:setAnnotation

Table.setAnnotation介绍

暂无

代码示例

代码示例来源:origin: org.teiid.connectors/translator-odata

  1. String name = annotation.getName();
  2. if (name.equalsIgnoreCase("label")) { //$NON-NLS-1$
  3. t.setAnnotation((String)annotation.getValue());

代码示例来源:origin: org.teiid.connectors/translator-jdbc

  1. /**
  2. *
  3. * @param metadataFactory
  4. * @param tableCatalog
  5. * @param tableSchema
  6. * @param tableName
  7. * @param remarks
  8. * @param fullName
  9. * @return
  10. */
  11. protected Table addTable(MetadataFactory metadataFactory,
  12. String tableCatalog, String tableSchema, String tableName,
  13. String remarks, String fullName) {
  14. Table table = metadataFactory.addTable(useFullSchemaName?fullName:tableName);
  15. table.setNameInSource(getFullyQualifiedName(tableCatalog, tableSchema, tableName, true));
  16. //create a fqn for the table
  17. FullyQualifiedName fqn = new FullyQualifiedName();
  18. if (tableCatalog != null && !tableCatalog.isEmpty()) {
  19. fqn.append(getCatalogTerm(), tableCatalog);
  20. }
  21. if (tableSchema != null && !tableSchema.isEmpty()) {
  22. fqn.append(getSchemaTerm(), tableSchema);
  23. }
  24. fqn.append(getTableTerm(), tableName);
  25. table.setProperty(FQN, fqn.toString());
  26. table.setSupportsUpdate(true);
  27. table.setAnnotation(remarks);
  28. return table;
  29. }

相关文章