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.

TypesCastOptions.java 635B

1234567891011121314151617181920212223242526272829
  1. package com.rthoni.intellij.codefromds.dbo.options;
  2. import java.util.HashMap;
  3. /**
  4. * Created by robin on 11/19/16.
  5. */
  6. public class TypesCastOptions {
  7. private String _arrayTemplate;
  8. private HashMap<String, HashMap<String, String>> _types;
  9. public String getArrayTemplate() {
  10. return _arrayTemplate;
  11. }
  12. public void setArrayTemplate(String arrayTemplate) {
  13. _arrayTemplate = arrayTemplate;
  14. }
  15. public HashMap<String, HashMap<String, String>> getTypes() {
  16. return _types;
  17. }
  18. public void setTypes(HashMap<String, HashMap<String, String>> types) {
  19. _types = types;
  20. }
  21. }