Revision 11041 trunk/frameworks/_fwAndami/src/com/iver/andami/iconthemes/IconThemeInfo.java

View differences:

IconThemeInfo.java
50 50
 *
51 51
 */
52 52
public class IconThemeInfo {
53
	private String name;
54
	private String description;
53
	private String name=null;
54
	private String description=null;
55 55
	private String version="1.0";
56
	private File resource;
56
	private Object resource=null;
57 57
	
58 58
	/**
59 59
	 * Gets the theme name.
......
113 113
	}
114 114
	
115 115
	/**
116
	 * Gets the file which contains physically contains this theme on disk.
117
	 * It may be a zipfile or jarfile, or a directory.
116
	 * Gets the Object which contains physically contains this theme on disk.
117
	 * It may be a ZipFile or JarFile, or a directory.
118 118
	 * 
119 119
	 * @return
120 120
	 */
121
	public File getResource() {
121
	public Object getResource() {
122 122
		return resource;
123 123
	}
124 124
	
125 125
	/**
126 126
	 * Sets the file which contains physically contains this theme on disk.
127
	 * It may be a zipfile or jarfile, or a directory.
127
	 * It may be a ZipFile or JarFile, or a directory.
128 128
	 * 
129 129
	 * @return
130 130
	 */
131
	public void setResource(File resource) {
131
	public void setResource(Object resource) {
132 132
		this.resource = resource;
133 133
	}
134 134
}

Also available in: Unified diff