fork download
  1. class Example
  2. {
  3. public static void main (String[] args) throws java.lang.Exception
  4. {
  5. new TeradataTable("foo");
  6. }
  7. }
  8.  
  9. class RdbmsTable {
  10. public RdbmsTable(String uri) {
  11. System.out.println(this.getClass().getSimpleName().toUpperCase());
  12. }
  13.  
  14. }
  15.  
  16. class TeradataTable extends RdbmsTable {
  17. public TeradataTable(String uri) {
  18. super(uri);
  19. }
  20. }
Success #stdin #stdout 0.04s 711168KB
stdin
Standard input is empty
stdout
TERADATATABLE