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.

URLReference.java 619B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. @VaadinApache2LicenseForJavaFiles@
  3. */
  4. package com.vaadin.shared.communication;
  5. import java.io.Serializable;
  6. public class URLReference implements Serializable {
  7. private String URL;
  8. /**
  9. * Returns the URL that this object refers to.
  10. * <p>
  11. * Note that the URL can use special protocols like theme://
  12. *
  13. * @return The URL for this reference or null if unknown.
  14. */
  15. public String getURL() {
  16. return URL;
  17. }
  18. /**
  19. * Sets the URL that this object refers to
  20. *
  21. * @param URL
  22. */
  23. public void setURL(String URL) {
  24. this.URL = URL;
  25. }
  26. }