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