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.

DataSourceSelection.java 590B

123456789101112131415161718192021222324252627282930
  1. package com.rthoni.intellij.codefromds.dbo;
  2. import com.intellij.database.psi.DbDataSource;
  3. import java.util.List;
  4. /**
  5. * Created by robin on 11/15/16.
  6. */
  7. public class DataSourceSelection {
  8. private DbDataSource _source;
  9. private List<TableSelection> _tables;
  10. public DbDataSource getSource() {
  11. return _source;
  12. }
  13. public void setSource(DbDataSource source) {
  14. _source = source;
  15. }
  16. public List<TableSelection> getTables() {
  17. return _tables;
  18. }
  19. public void setTables(List<TableSelection> tables) {
  20. _tables = tables;
  21. }
  22. }