/** * <copyright> * </copyright> * * */ package org.reuseware.air.language.abstractsyntax.resource.as; /** * A common interface for token styles. Text resources must return style * information using classes that implement this interface. */ public interface IAsTokenStyle { /** * Returns the color of the token as array of length 3. */ public int[] getColorAsRGB(); /** * Returns true if the token must be displayed in bold face. */ public boolean isBold(); /** * Returns true if the token must be displayed in italic face. */ public boolean isItalic(); /** * Returns true if the token must be displayed in strike through style. */ public boolean isStrikethrough(); /** * Returns true if the token must be displayed underlined. */ public boolean isUnderline(); }