Revision 19520 tags/J2ME_compat_v1_2_Build_1209/frameworks/_fwAndami/src/com/iver/andami/iconthemes/IconThemeZip.java

View differences:

IconThemeZip.java
29 29
	 * Allows load a icon when this is inside in a Zip file. IconName is the name or
30 30
	 * key of the icon and "resource"
31 31
	 */
32
	@Override
32
	// @Override
33 33
	protected ImageIcon loadIcon(String iconName, Object resource) {
34 34
		if (resource instanceof ZipEntry && getResource() instanceof ZipFile) {
35 35
			ZipEntry entry = (ZipEntry) resource;
......
58 58
	/**
59 59
	 * Allows load all icons in the zip file.
60 60
	 */
61
	@Override
61
	// @Override
62 62
	public void load() {
63 63
		if (getResource() instanceof ZipFile) {
64 64
			ZipFile zipFile = (ZipFile) getResource();

Also available in: Unified diff