您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Resource.java 470B

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