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.

OutputLine.java 928B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /* *******************************************************************
  2. * Copyright (c) 2005 IBM Corporation
  3. * All rights reserved.
  4. * This program and the accompanying materials are made available
  5. * under the terms of the Eclipse Public License v1.0
  6. * which accompanies this distribution and is available at
  7. * http://www.eclipse.org/legal/epl-v10.html
  8. *
  9. * Contributors:
  10. * Adrian Colyer,
  11. * ******************************************************************/
  12. package org.aspectj.testing;
  13. /**
  14. * @author Adrian Colyer
  15. * @author Andy Clement
  16. */
  17. public class OutputLine {
  18. // Expected text
  19. private String text;
  20. // Comma separated list of vm versions on which this is expected
  21. private String vm;
  22. public String getText() {
  23. return text;
  24. }
  25. public void setText(String text) {
  26. this.text = text;
  27. }
  28. public String getVm() {
  29. return vm;
  30. }
  31. public void setVm(String vm) {
  32. this.vm = vm;
  33. }
  34. }