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.

GenerateOptions.java 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. package com.rthoni.intellij.codefromds.dbo;
  2. /**
  3. * Created by robin on 11/15/16.
  4. */
  5. public class GenerateOptions {
  6. private DataSourceSelection _selection;
  7. private String _modelsPath;
  8. private String _dataSourceTemplatePath;
  9. private String _modelsTemplatePath;
  10. private String _configPath;
  11. public DataSourceSelection getSelection() {
  12. return _selection;
  13. }
  14. public void setSelection(DataSourceSelection selection) {
  15. _selection = selection;
  16. }
  17. public String getModelsPath() {
  18. return _modelsPath;
  19. }
  20. public void setModelsPath(String modelsPath) {
  21. _modelsPath = modelsPath;
  22. }
  23. public String getDataSourceTemplatePath() {
  24. return _dataSourceTemplatePath;
  25. }
  26. public void setDataSourceTemplatePath(String dataSourceTemplatePath) {
  27. _dataSourceTemplatePath = dataSourceTemplatePath;
  28. }
  29. public String getModelsTemplatePath() {
  30. return _modelsTemplatePath;
  31. }
  32. public void setModelsTemplatePath(String modelsTemplatePath) {
  33. _modelsTemplatePath = modelsTemplatePath;
  34. }
  35. public String getConfigPath() {
  36. return _configPath;
  37. }
  38. public void setConfigPath(String configPath) {
  39. _configPath = configPath;
  40. }
  41. }