Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

123456789101112131415161718192021222324252627282930313233343536
  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 colyer
  15. *
  16. * TODO To change the template for this generated type comment go to
  17. * Window - Preferences - Java - Code Style - Code Templates
  18. */
  19. public class OutputLine {
  20. private String text;
  21. /**
  22. * @return Returns the text.
  23. */
  24. public String getText() {
  25. return text;
  26. }
  27. /**
  28. * @param text The text to set.
  29. */
  30. public void setText(String text) {
  31. this.text = text;
  32. }
  33. }