/* * ICOConstants.java * * Created on May 13, 2006, 8:07 PM * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package com.inet.gradle.setup.image.image4j.codec.ico; /** * Provides constants used with ICO format. * @author Ian McDonagh */ public class ICOConstants { /** * Indicates that ICO data represents an icon (.ICO). */ public static final int TYPE_ICON = 1; /** * Indicates that ICO data represents a cursor (.CUR). */ public static final int TYPE_CURSOR = 2; }