ReturnInformation.java 617 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. package be.uantwerpen.ansymo.semanticadaptation.cg.cpp;
  2. public class ReturnInformation {
  3. private ScalarVariable sv;
  4. private SVType type;
  5. private String code;
  6. public ReturnInformation() {
  7. // TODO Auto-generated constructor stub
  8. }
  9. public String getCode() {
  10. return code;
  11. }
  12. public void setCode(String code) {
  13. this.code = code;
  14. }
  15. public ScalarVariable getSv() {
  16. return sv;
  17. }
  18. public void setSv(ScalarVariable sv) {
  19. this.sv = sv;
  20. }
  21. public SVType getType() {
  22. return type;
  23. }
  24. public void setType(SVType type) {
  25. this.type = type;
  26. }
  27. }