Home | History | Annotate | Download | only in style

Lines Matching defs:CharacterStyle

26 public abstract class CharacterStyle {
30 * A given CharacterStyle can only applied to a single region of a given
31 * Spanned. If you need to attach the same CharacterStyle to multiple
36 public static CharacterStyle wrap(CharacterStyle cs) {
47 * CharacterStyle.
49 public CharacterStyle getUnderlying() {
54 * A Passthrough CharacterStyle is one that
56 * specified CharacterStyle while still being a distinct object,
58 * to which the specified CharacterStyle is already attached.
60 private static class Passthrough extends CharacterStyle {
61 private CharacterStyle mStyle;
64 * Creates a new Passthrough of the specfied CharacterStyle.
66 public Passthrough(CharacterStyle cs) {
71 * Passes updateDrawState through to the underlying CharacterStyle.
79 * Returns the CharacterStyle underlying this one, or the one
83 public CharacterStyle getUnderlying() {