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.

Resource.java 513B

1234567891011121314151617181920212223242526
  1. /*
  2. @ITMillApache2LicenseForJavaFiles@
  3. */
  4. package com.vaadin.terminal;
  5. import java.io.Serializable;
  6. /**
  7. * <code>Resource</code> provided to the client terminal. Support for actually
  8. * displaying the resource type is left to the terminal.
  9. *
  10. * @author IT Mill Ltd.
  11. * @version
  12. * @VERSION@
  13. * @since 3.0
  14. */
  15. public interface Resource extends Serializable {
  16. /**
  17. * Gets the MIME type of the resource.
  18. *
  19. * @return the MIME type of the resource.
  20. */
  21. public String getMIMEType();
  22. }