You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

DataSourceDbo.java 526B

1234567891011121314151617181920212223242526272829
  1. package com.rthoni.intellij.codefromds.dbo.template;
  2. import java.util.List;
  3. /**
  4. * Created by robin on 11/18/16.
  5. */
  6. public class DataSourceDbo {
  7. private String _name;
  8. private List<TableDataSourceDbo> _tables;
  9. public String getName() {
  10. return _name;
  11. }
  12. public void setName(String name) {
  13. _name = name;
  14. }
  15. public List<TableDataSourceDbo> getTables() {
  16. return _tables;
  17. }
  18. public void setTables(List<TableDataSourceDbo> tables) {
  19. _tables = tables;
  20. }
  21. }