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 556B

1234567891011121314151617181920212223242526
  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 _modelsFolder;
  8. public DataSourceSelection getSelection() {
  9. return _selection;
  10. }
  11. public void setSelection(DataSourceSelection selection) {
  12. _selection = selection;
  13. }
  14. public String getModelsFolder() {
  15. return _modelsFolder;
  16. }
  17. public void setModelsFolder(String modelsFolder) {
  18. _modelsFolder = modelsFolder;
  19. }
  20. }