java.awt.font.TransformAttribute Java Examples

The following examples show how to use java.awt.font.TransformAttribute. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: TransformEqualityTest.java    From jdk8u-dev-jdk with GNU General Public License v2.0 6 votes vote down vote up
public static void main(String[] args) {
    AffineTransform tx1 = new AffineTransform(1, 0, 1, 1, 0, 0);
    AffineTransform tx2 = new AffineTransform(1, 0, 1, 1, 0, 0);
    AffineTransform tx3 = new AffineTransform(2, 0, 1, 1, 0, 0);
    TransformAttribute ta1a = new TransformAttribute(tx1);
    TransformAttribute ta1b = new TransformAttribute(tx1);
    TransformAttribute ta2 = new TransformAttribute(tx2);
    TransformAttribute ta3 = new TransformAttribute(tx3);
    if (ta1a.equals(null)) {
        throw new RuntimeException("should not be equal to null.");
    }
    if (!ta1a.equals(ta1a)) {
        throw new RuntimeException("(1) should be equal.");
    }
    if (!ta1a.equals(ta1b)) {
        throw new RuntimeException("(2) should be equal.");
    }
    if (!ta1a.equals(ta2)) {
        throw new RuntimeException("(3) should be equal.");
    }
    if (ta2.equals(ta3)) {
        throw new RuntimeException("should be different.");
    }
}
 
Example #2
Source File: TransformEqualityTest.java    From hottub with GNU General Public License v2.0 6 votes vote down vote up
public static void main(String[] args) {
    AffineTransform tx1 = new AffineTransform(1, 0, 1, 1, 0, 0);
    AffineTransform tx2 = new AffineTransform(1, 0, 1, 1, 0, 0);
    AffineTransform tx3 = new AffineTransform(2, 0, 1, 1, 0, 0);
    TransformAttribute ta1a = new TransformAttribute(tx1);
    TransformAttribute ta1b = new TransformAttribute(tx1);
    TransformAttribute ta2 = new TransformAttribute(tx2);
    TransformAttribute ta3 = new TransformAttribute(tx3);
    if (ta1a.equals(null)) {
        throw new RuntimeException("should not be equal to null.");
    }
    if (!ta1a.equals(ta1a)) {
        throw new RuntimeException("(1) should be equal.");
    }
    if (!ta1a.equals(ta1b)) {
        throw new RuntimeException("(2) should be equal.");
    }
    if (!ta1a.equals(ta2)) {
        throw new RuntimeException("(3) should be equal.");
    }
    if (ta2.equals(ta3)) {
        throw new RuntimeException("should be different.");
    }
}
 
Example #3
Source File: TransformEqualityTest.java    From jdk8u-jdk with GNU General Public License v2.0 6 votes vote down vote up
public static void main(String[] args) {
    AffineTransform tx1 = new AffineTransform(1, 0, 1, 1, 0, 0);
    AffineTransform tx2 = new AffineTransform(1, 0, 1, 1, 0, 0);
    AffineTransform tx3 = new AffineTransform(2, 0, 1, 1, 0, 0);
    TransformAttribute ta1a = new TransformAttribute(tx1);
    TransformAttribute ta1b = new TransformAttribute(tx1);
    TransformAttribute ta2 = new TransformAttribute(tx2);
    TransformAttribute ta3 = new TransformAttribute(tx3);
    if (ta1a.equals(null)) {
        throw new RuntimeException("should not be equal to null.");
    }
    if (!ta1a.equals(ta1a)) {
        throw new RuntimeException("(1) should be equal.");
    }
    if (!ta1a.equals(ta1b)) {
        throw new RuntimeException("(2) should be equal.");
    }
    if (!ta1a.equals(ta2)) {
        throw new RuntimeException("(3) should be equal.");
    }
    if (ta2.equals(ta3)) {
        throw new RuntimeException("should be different.");
    }
}
 
Example #4
Source File: TransformEqualityTest.java    From openjdk-jdk9 with GNU General Public License v2.0 6 votes vote down vote up
public static void main(String[] args) {
    AffineTransform tx1 = new AffineTransform(1, 0, 1, 1, 0, 0);
    AffineTransform tx2 = new AffineTransform(1, 0, 1, 1, 0, 0);
    AffineTransform tx3 = new AffineTransform(2, 0, 1, 1, 0, 0);
    TransformAttribute ta1a = new TransformAttribute(tx1);
    TransformAttribute ta1b = new TransformAttribute(tx1);
    TransformAttribute ta2 = new TransformAttribute(tx2);
    TransformAttribute ta3 = new TransformAttribute(tx3);
    if (ta1a.equals(null)) {
        throw new RuntimeException("should not be equal to null.");
    }
    if (!ta1a.equals(ta1a)) {
        throw new RuntimeException("(1) should be equal.");
    }
    if (!ta1a.equals(ta1b)) {
        throw new RuntimeException("(2) should be equal.");
    }
    if (!ta1a.equals(ta2)) {
        throw new RuntimeException("(3) should be equal.");
    }
    if (ta2.equals(ta3)) {
        throw new RuntimeException("should be different.");
    }
}
 
Example #5
Source File: TransformEqualityTest.java    From openjdk-8-source with GNU General Public License v2.0 6 votes vote down vote up
public static void main(String[] args) {
    AffineTransform tx1 = new AffineTransform(1, 0, 1, 1, 0, 0);
    AffineTransform tx2 = new AffineTransform(1, 0, 1, 1, 0, 0);
    AffineTransform tx3 = new AffineTransform(2, 0, 1, 1, 0, 0);
    TransformAttribute ta1a = new TransformAttribute(tx1);
    TransformAttribute ta1b = new TransformAttribute(tx1);
    TransformAttribute ta2 = new TransformAttribute(tx2);
    TransformAttribute ta3 = new TransformAttribute(tx3);
    if (ta1a.equals(null)) {
        throw new RuntimeException("should not be equal to null.");
    }
    if (!ta1a.equals(ta1a)) {
        throw new RuntimeException("(1) should be equal.");
    }
    if (!ta1a.equals(ta1b)) {
        throw new RuntimeException("(2) should be equal.");
    }
    if (!ta1a.equals(ta2)) {
        throw new RuntimeException("(3) should be equal.");
    }
    if (ta2.equals(ta3)) {
        throw new RuntimeException("should be different.");
    }
}
 
Example #6
Source File: TransformEqualityTest.java    From openjdk-8 with GNU General Public License v2.0 6 votes vote down vote up
public static void main(String[] args) {
    AffineTransform tx1 = new AffineTransform(1, 0, 1, 1, 0, 0);
    AffineTransform tx2 = new AffineTransform(1, 0, 1, 1, 0, 0);
    AffineTransform tx3 = new AffineTransform(2, 0, 1, 1, 0, 0);
    TransformAttribute ta1a = new TransformAttribute(tx1);
    TransformAttribute ta1b = new TransformAttribute(tx1);
    TransformAttribute ta2 = new TransformAttribute(tx2);
    TransformAttribute ta3 = new TransformAttribute(tx3);
    if (ta1a.equals(null)) {
        throw new RuntimeException("should not be equal to null.");
    }
    if (!ta1a.equals(ta1a)) {
        throw new RuntimeException("(1) should be equal.");
    }
    if (!ta1a.equals(ta1b)) {
        throw new RuntimeException("(2) should be equal.");
    }
    if (!ta1a.equals(ta2)) {
        throw new RuntimeException("(3) should be equal.");
    }
    if (ta2.equals(ta3)) {
        throw new RuntimeException("should be different.");
    }
}
 
Example #7
Source File: TransformEqualityTest.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 6 votes vote down vote up
public static void main(String[] args) {
    AffineTransform tx1 = new AffineTransform(1, 0, 1, 1, 0, 0);
    AffineTransform tx2 = new AffineTransform(1, 0, 1, 1, 0, 0);
    AffineTransform tx3 = new AffineTransform(2, 0, 1, 1, 0, 0);
    TransformAttribute ta1a = new TransformAttribute(tx1);
    TransformAttribute ta1b = new TransformAttribute(tx1);
    TransformAttribute ta2 = new TransformAttribute(tx2);
    TransformAttribute ta3 = new TransformAttribute(tx3);
    if (ta1a.equals(null)) {
        throw new RuntimeException("should not be equal to null.");
    }
    if (!ta1a.equals(ta1a)) {
        throw new RuntimeException("(1) should be equal.");
    }
    if (!ta1a.equals(ta1b)) {
        throw new RuntimeException("(2) should be equal.");
    }
    if (!ta1a.equals(ta2)) {
        throw new RuntimeException("(3) should be equal.");
    }
    if (ta2.equals(ta3)) {
        throw new RuntimeException("should be different.");
    }
}
 
Example #8
Source File: TransformEqualityTest.java    From openjdk-jdk8u with GNU General Public License v2.0 6 votes vote down vote up
public static void main(String[] args) {
    AffineTransform tx1 = new AffineTransform(1, 0, 1, 1, 0, 0);
    AffineTransform tx2 = new AffineTransform(1, 0, 1, 1, 0, 0);
    AffineTransform tx3 = new AffineTransform(2, 0, 1, 1, 0, 0);
    TransformAttribute ta1a = new TransformAttribute(tx1);
    TransformAttribute ta1b = new TransformAttribute(tx1);
    TransformAttribute ta2 = new TransformAttribute(tx2);
    TransformAttribute ta3 = new TransformAttribute(tx3);
    if (ta1a.equals(null)) {
        throw new RuntimeException("should not be equal to null.");
    }
    if (!ta1a.equals(ta1a)) {
        throw new RuntimeException("(1) should be equal.");
    }
    if (!ta1a.equals(ta1b)) {
        throw new RuntimeException("(2) should be equal.");
    }
    if (!ta1a.equals(ta2)) {
        throw new RuntimeException("(3) should be equal.");
    }
    if (ta2.equals(ta3)) {
        throw new RuntimeException("should be different.");
    }
}
 
Example #9
Source File: TransformEqualityTest.java    From jdk8u_jdk with GNU General Public License v2.0 6 votes vote down vote up
public static void main(String[] args) {
    AffineTransform tx1 = new AffineTransform(1, 0, 1, 1, 0, 0);
    AffineTransform tx2 = new AffineTransform(1, 0, 1, 1, 0, 0);
    AffineTransform tx3 = new AffineTransform(2, 0, 1, 1, 0, 0);
    TransformAttribute ta1a = new TransformAttribute(tx1);
    TransformAttribute ta1b = new TransformAttribute(tx1);
    TransformAttribute ta2 = new TransformAttribute(tx2);
    TransformAttribute ta3 = new TransformAttribute(tx3);
    if (ta1a.equals(null)) {
        throw new RuntimeException("should not be equal to null.");
    }
    if (!ta1a.equals(ta1a)) {
        throw new RuntimeException("(1) should be equal.");
    }
    if (!ta1a.equals(ta1b)) {
        throw new RuntimeException("(2) should be equal.");
    }
    if (!ta1a.equals(ta2)) {
        throw new RuntimeException("(3) should be equal.");
    }
    if (ta2.equals(ta3)) {
        throw new RuntimeException("should be different.");
    }
}
 
Example #10
Source File: TransformEqualityTest.java    From jdk8u60 with GNU General Public License v2.0 6 votes vote down vote up
public static void main(String[] args) {
    AffineTransform tx1 = new AffineTransform(1, 0, 1, 1, 0, 0);
    AffineTransform tx2 = new AffineTransform(1, 0, 1, 1, 0, 0);
    AffineTransform tx3 = new AffineTransform(2, 0, 1, 1, 0, 0);
    TransformAttribute ta1a = new TransformAttribute(tx1);
    TransformAttribute ta1b = new TransformAttribute(tx1);
    TransformAttribute ta2 = new TransformAttribute(tx2);
    TransformAttribute ta3 = new TransformAttribute(tx3);
    if (ta1a.equals(null)) {
        throw new RuntimeException("should not be equal to null.");
    }
    if (!ta1a.equals(ta1a)) {
        throw new RuntimeException("(1) should be equal.");
    }
    if (!ta1a.equals(ta1b)) {
        throw new RuntimeException("(2) should be equal.");
    }
    if (!ta1a.equals(ta2)) {
        throw new RuntimeException("(3) should be equal.");
    }
    if (ta2.equals(ta3)) {
        throw new RuntimeException("should be different.");
    }
}
 
Example #11
Source File: TransformEqualityTest.java    From jdk8u-jdk with GNU General Public License v2.0 6 votes vote down vote up
public static void main(String[] args) {
    AffineTransform tx1 = new AffineTransform(1, 0, 1, 1, 0, 0);
    AffineTransform tx2 = new AffineTransform(1, 0, 1, 1, 0, 0);
    AffineTransform tx3 = new AffineTransform(2, 0, 1, 1, 0, 0);
    TransformAttribute ta1a = new TransformAttribute(tx1);
    TransformAttribute ta1b = new TransformAttribute(tx1);
    TransformAttribute ta2 = new TransformAttribute(tx2);
    TransformAttribute ta3 = new TransformAttribute(tx3);
    if (ta1a.equals(null)) {
        throw new RuntimeException("should not be equal to null.");
    }
    if (!ta1a.equals(ta1a)) {
        throw new RuntimeException("(1) should be equal.");
    }
    if (!ta1a.equals(ta1b)) {
        throw new RuntimeException("(2) should be equal.");
    }
    if (!ta1a.equals(ta2)) {
        throw new RuntimeException("(3) should be equal.");
    }
    if (ta2.equals(ta3)) {
        throw new RuntimeException("should be different.");
    }
}
 
Example #12
Source File: TransformEqualityTest.java    From TencentKona-8 with GNU General Public License v2.0 6 votes vote down vote up
public static void main(String[] args) {
    AffineTransform tx1 = new AffineTransform(1, 0, 1, 1, 0, 0);
    AffineTransform tx2 = new AffineTransform(1, 0, 1, 1, 0, 0);
    AffineTransform tx3 = new AffineTransform(2, 0, 1, 1, 0, 0);
    TransformAttribute ta1a = new TransformAttribute(tx1);
    TransformAttribute ta1b = new TransformAttribute(tx1);
    TransformAttribute ta2 = new TransformAttribute(tx2);
    TransformAttribute ta3 = new TransformAttribute(tx3);
    if (ta1a.equals(null)) {
        throw new RuntimeException("should not be equal to null.");
    }
    if (!ta1a.equals(ta1a)) {
        throw new RuntimeException("(1) should be equal.");
    }
    if (!ta1a.equals(ta1b)) {
        throw new RuntimeException("(2) should be equal.");
    }
    if (!ta1a.equals(ta2)) {
        throw new RuntimeException("(3) should be equal.");
    }
    if (ta2.equals(ta3)) {
        throw new RuntimeException("should be different.");
    }
}
 
Example #13
Source File: TransformEqualityTest.java    From dragonwell8_jdk with GNU General Public License v2.0 6 votes vote down vote up
public static void main(String[] args) {
    AffineTransform tx1 = new AffineTransform(1, 0, 1, 1, 0, 0);
    AffineTransform tx2 = new AffineTransform(1, 0, 1, 1, 0, 0);
    AffineTransform tx3 = new AffineTransform(2, 0, 1, 1, 0, 0);
    TransformAttribute ta1a = new TransformAttribute(tx1);
    TransformAttribute ta1b = new TransformAttribute(tx1);
    TransformAttribute ta2 = new TransformAttribute(tx2);
    TransformAttribute ta3 = new TransformAttribute(tx3);
    if (ta1a.equals(null)) {
        throw new RuntimeException("should not be equal to null.");
    }
    if (!ta1a.equals(ta1a)) {
        throw new RuntimeException("(1) should be equal.");
    }
    if (!ta1a.equals(ta1b)) {
        throw new RuntimeException("(2) should be equal.");
    }
    if (!ta1a.equals(ta2)) {
        throw new RuntimeException("(3) should be equal.");
    }
    if (ta2.equals(ta3)) {
        throw new RuntimeException("should be different.");
    }
}
 
Example #14
Source File: AttributeValues.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
public void setTransform(TransformAttribute f) {
    this.transform = (f == null || f.isIdentity())
        ? DEFAULT.transform
        : f.getTransform();
    updateDerivedTransforms();
    update(ETRANSFORM);
}
 
Example #15
Source File: AttributeValues.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
private Object i_get(EAttribute a) {
    switch (a) {
    case EFAMILY: return family;
    case EWEIGHT: return Float.valueOf(weight);
    case EWIDTH: return Float.valueOf(width);
    case EPOSTURE: return Float.valueOf(posture);
    case ESIZE: return Float.valueOf(size);
    case ETRANSFORM:
        return transform == null
            ? TransformAttribute.IDENTITY
            : new TransformAttribute(transform);
    case ESUPERSCRIPT: return Integer.valueOf(superscript);
    case EFONT: return font;
    case ECHAR_REPLACEMENT: return charReplacement;
    case EFOREGROUND: return foreground;
    case EBACKGROUND: return background;
    case EUNDERLINE: return Integer.valueOf(underline);
    case ESTRIKETHROUGH: return Boolean.valueOf(strikethrough);
    case ERUN_DIRECTION: {
        switch (runDirection) {
            // todo: figure out a way to indicate this value
            // case -1: return Integer.valueOf(runDirection);
        case 0: return TextAttribute.RUN_DIRECTION_LTR;
        case 1: return TextAttribute.RUN_DIRECTION_RTL;
        default: return null;
        }
    } // not reachable
    case EBIDI_EMBEDDING: return Integer.valueOf(bidiEmbedding);
    case EJUSTIFICATION: return Float.valueOf(justification);
    case EINPUT_METHOD_HIGHLIGHT: return imHighlight;
    case EINPUT_METHOD_UNDERLINE: return Integer.valueOf(imUnderline);
    case ESWAP_COLORS: return Boolean.valueOf(swapColors);
    case ENUMERIC_SHAPING: return numericShaping;
    case EKERNING: return Integer.valueOf(kerning);
    case ELIGATURES: return Integer.valueOf(ligatures);
    case ETRACKING: return Float.valueOf(tracking);
    default: throw new InternalError();
    }
}
 
Example #16
Source File: AttributeValues.java    From jdk8u_jdk with GNU General Public License v2.0 5 votes vote down vote up
private Object i_get(EAttribute a) {
    switch (a) {
    case EFAMILY: return family;
    case EWEIGHT: return Float.valueOf(weight);
    case EWIDTH: return Float.valueOf(width);
    case EPOSTURE: return Float.valueOf(posture);
    case ESIZE: return Float.valueOf(size);
    case ETRANSFORM:
        return transform == null
            ? TransformAttribute.IDENTITY
            : new TransformAttribute(transform);
    case ESUPERSCRIPT: return Integer.valueOf(superscript);
    case EFONT: return font;
    case ECHAR_REPLACEMENT: return charReplacement;
    case EFOREGROUND: return foreground;
    case EBACKGROUND: return background;
    case EUNDERLINE: return Integer.valueOf(underline);
    case ESTRIKETHROUGH: return Boolean.valueOf(strikethrough);
    case ERUN_DIRECTION: {
        switch (runDirection) {
            // todo: figure out a way to indicate this value
            // case -1: return Integer.valueOf(runDirection);
        case 0: return TextAttribute.RUN_DIRECTION_LTR;
        case 1: return TextAttribute.RUN_DIRECTION_RTL;
        default: return null;
        }
    } // not reachable
    case EBIDI_EMBEDDING: return Integer.valueOf(bidiEmbedding);
    case EJUSTIFICATION: return Float.valueOf(justification);
    case EINPUT_METHOD_HIGHLIGHT: return imHighlight;
    case EINPUT_METHOD_UNDERLINE: return Integer.valueOf(imUnderline);
    case ESWAP_COLORS: return Boolean.valueOf(swapColors);
    case ENUMERIC_SHAPING: return numericShaping;
    case EKERNING: return Integer.valueOf(kerning);
    case ELIGATURES: return Integer.valueOf(ligatures);
    case ETRACKING: return Float.valueOf(tracking);
    default: throw new InternalError();
    }
}
 
Example #17
Source File: AttributeValues.java    From jdk8u_jdk with GNU General Public License v2.0 5 votes vote down vote up
public void setTransform(TransformAttribute f) {
    this.transform = (f == null || f.isIdentity())
        ? DEFAULT.transform
        : f.getTransform();
    updateDerivedTransforms();
    update(ETRANSFORM);
}
 
Example #18
Source File: AttributeValues.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
private Object i_get(EAttribute a) {
    switch (a) {
    case EFAMILY: return family;
    case EWEIGHT: return Float.valueOf(weight);
    case EWIDTH: return Float.valueOf(width);
    case EPOSTURE: return Float.valueOf(posture);
    case ESIZE: return Float.valueOf(size);
    case ETRANSFORM:
        return transform == null
            ? TransformAttribute.IDENTITY
            : new TransformAttribute(transform);
    case ESUPERSCRIPT: return Integer.valueOf(superscript);
    case EFONT: return font;
    case ECHAR_REPLACEMENT: return charReplacement;
    case EFOREGROUND: return foreground;
    case EBACKGROUND: return background;
    case EUNDERLINE: return Integer.valueOf(underline);
    case ESTRIKETHROUGH: return Boolean.valueOf(strikethrough);
    case ERUN_DIRECTION: {
        switch (runDirection) {
            // todo: figure out a way to indicate this value
            // case -1: return Integer.valueOf(runDirection);
        case 0: return TextAttribute.RUN_DIRECTION_LTR;
        case 1: return TextAttribute.RUN_DIRECTION_RTL;
        default: return null;
        }
    } // not reachable
    case EBIDI_EMBEDDING: return Integer.valueOf(bidiEmbedding);
    case EJUSTIFICATION: return Float.valueOf(justification);
    case EINPUT_METHOD_HIGHLIGHT: return imHighlight;
    case EINPUT_METHOD_UNDERLINE: return Integer.valueOf(imUnderline);
    case ESWAP_COLORS: return Boolean.valueOf(swapColors);
    case ENUMERIC_SHAPING: return numericShaping;
    case EKERNING: return Integer.valueOf(kerning);
    case ELIGATURES: return Integer.valueOf(ligatures);
    case ETRACKING: return Float.valueOf(tracking);
    default: throw new InternalError();
    }
}
 
Example #19
Source File: AttributeValues.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
public void setTransform(TransformAttribute f) {
    this.transform = (f == null || f.isIdentity())
        ? DEFAULT.transform
        : f.getTransform();
    updateDerivedTransforms();
    update(ETRANSFORM);
}
 
Example #20
Source File: AttributeValues.java    From jdk8u-dev-jdk with GNU General Public License v2.0 5 votes vote down vote up
public void setTransform(TransformAttribute f) {
    this.transform = (f == null || f.isIdentity())
        ? DEFAULT.transform
        : f.getTransform();
    updateDerivedTransforms();
    update(ETRANSFORM);
}
 
Example #21
Source File: AttributeValues.java    From jdk8u-dev-jdk with GNU General Public License v2.0 5 votes vote down vote up
private Object i_get(EAttribute a) {
    switch (a) {
    case EFAMILY: return family;
    case EWEIGHT: return Float.valueOf(weight);
    case EWIDTH: return Float.valueOf(width);
    case EPOSTURE: return Float.valueOf(posture);
    case ESIZE: return Float.valueOf(size);
    case ETRANSFORM:
        return transform == null
            ? TransformAttribute.IDENTITY
            : new TransformAttribute(transform);
    case ESUPERSCRIPT: return Integer.valueOf(superscript);
    case EFONT: return font;
    case ECHAR_REPLACEMENT: return charReplacement;
    case EFOREGROUND: return foreground;
    case EBACKGROUND: return background;
    case EUNDERLINE: return Integer.valueOf(underline);
    case ESTRIKETHROUGH: return Boolean.valueOf(strikethrough);
    case ERUN_DIRECTION: {
        switch (runDirection) {
            // todo: figure out a way to indicate this value
            // case -1: return Integer.valueOf(runDirection);
        case 0: return TextAttribute.RUN_DIRECTION_LTR;
        case 1: return TextAttribute.RUN_DIRECTION_RTL;
        default: return null;
        }
    } // not reachable
    case EBIDI_EMBEDDING: return Integer.valueOf(bidiEmbedding);
    case EJUSTIFICATION: return Float.valueOf(justification);
    case EINPUT_METHOD_HIGHLIGHT: return imHighlight;
    case EINPUT_METHOD_UNDERLINE: return Integer.valueOf(imUnderline);
    case ESWAP_COLORS: return Boolean.valueOf(swapColors);
    case ENUMERIC_SHAPING: return numericShaping;
    case EKERNING: return Integer.valueOf(kerning);
    case ELIGATURES: return Integer.valueOf(ligatures);
    case ETRACKING: return Float.valueOf(tracking);
    default: throw new InternalError();
    }
}
 
Example #22
Source File: AttributeValues.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
private Object i_get(EAttribute a) {
    switch (a) {
    case EFAMILY: return family;
    case EWEIGHT: return Float.valueOf(weight);
    case EWIDTH: return Float.valueOf(width);
    case EPOSTURE: return Float.valueOf(posture);
    case ESIZE: return Float.valueOf(size);
    case ETRANSFORM:
        return transform == null
            ? TransformAttribute.IDENTITY
            : new TransformAttribute(transform);
    case ESUPERSCRIPT: return Integer.valueOf(superscript);
    case EFONT: return font;
    case ECHAR_REPLACEMENT: return charReplacement;
    case EFOREGROUND: return foreground;
    case EBACKGROUND: return background;
    case EUNDERLINE: return Integer.valueOf(underline);
    case ESTRIKETHROUGH: return Boolean.valueOf(strikethrough);
    case ERUN_DIRECTION: {
        switch (runDirection) {
            // todo: figure out a way to indicate this value
            // case -1: return Integer.valueOf(runDirection);
        case 0: return TextAttribute.RUN_DIRECTION_LTR;
        case 1: return TextAttribute.RUN_DIRECTION_RTL;
        default: return null;
        }
    } // not reachable
    case EBIDI_EMBEDDING: return Integer.valueOf(bidiEmbedding);
    case EJUSTIFICATION: return Float.valueOf(justification);
    case EINPUT_METHOD_HIGHLIGHT: return imHighlight;
    case EINPUT_METHOD_UNDERLINE: return Integer.valueOf(imUnderline);
    case ESWAP_COLORS: return Boolean.valueOf(swapColors);
    case ENUMERIC_SHAPING: return numericShaping;
    case EKERNING: return Integer.valueOf(kerning);
    case ELIGATURES: return Integer.valueOf(ligatures);
    case ETRACKING: return Float.valueOf(tracking);
    default: throw new InternalError();
    }
}
 
Example #23
Source File: AttributeValues.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
public void setTransform(TransformAttribute f) {
    this.transform = (f == null || f.isIdentity())
        ? DEFAULT.transform
        : f.getTransform();
    updateDerivedTransforms();
    update(ETRANSFORM);
}
 
Example #24
Source File: AttributeValues.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
public void setTransform(TransformAttribute f) {
    this.transform = (f == null || f.isIdentity())
        ? DEFAULT.transform
        : f.getTransform();
    updateDerivedTransforms();
    update(ETRANSFORM);
}
 
Example #25
Source File: AttributeValues.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
private Object i_get(EAttribute a) {
    switch (a) {
    case EFAMILY: return family;
    case EWEIGHT: return Float.valueOf(weight);
    case EWIDTH: return Float.valueOf(width);
    case EPOSTURE: return Float.valueOf(posture);
    case ESIZE: return Float.valueOf(size);
    case ETRANSFORM:
        return transform == null
            ? TransformAttribute.IDENTITY
            : new TransformAttribute(transform);
    case ESUPERSCRIPT: return Integer.valueOf(superscript);
    case EFONT: return font;
    case ECHAR_REPLACEMENT: return charReplacement;
    case EFOREGROUND: return foreground;
    case EBACKGROUND: return background;
    case EUNDERLINE: return Integer.valueOf(underline);
    case ESTRIKETHROUGH: return Boolean.valueOf(strikethrough);
    case ERUN_DIRECTION: {
        switch (runDirection) {
            // todo: figure out a way to indicate this value
            // case -1: return Integer.valueOf(runDirection);
        case 0: return TextAttribute.RUN_DIRECTION_LTR;
        case 1: return TextAttribute.RUN_DIRECTION_RTL;
        default: return null;
        }
    } // not reachable
    case EBIDI_EMBEDDING: return Integer.valueOf(bidiEmbedding);
    case EJUSTIFICATION: return Float.valueOf(justification);
    case EINPUT_METHOD_HIGHLIGHT: return imHighlight;
    case EINPUT_METHOD_UNDERLINE: return Integer.valueOf(imUnderline);
    case ESWAP_COLORS: return Boolean.valueOf(swapColors);
    case ENUMERIC_SHAPING: return numericShaping;
    case EKERNING: return Integer.valueOf(kerning);
    case ELIGATURES: return Integer.valueOf(ligatures);
    case ETRACKING: return Float.valueOf(tracking);
    default: throw new InternalError();
    }
}
 
Example #26
Source File: AttributeValues.java    From dragonwell8_jdk with GNU General Public License v2.0 5 votes vote down vote up
private Object i_get(EAttribute a) {
    switch (a) {
    case EFAMILY: return family;
    case EWEIGHT: return Float.valueOf(weight);
    case EWIDTH: return Float.valueOf(width);
    case EPOSTURE: return Float.valueOf(posture);
    case ESIZE: return Float.valueOf(size);
    case ETRANSFORM:
        return transform == null
            ? TransformAttribute.IDENTITY
            : new TransformAttribute(transform);
    case ESUPERSCRIPT: return Integer.valueOf(superscript);
    case EFONT: return font;
    case ECHAR_REPLACEMENT: return charReplacement;
    case EFOREGROUND: return foreground;
    case EBACKGROUND: return background;
    case EUNDERLINE: return Integer.valueOf(underline);
    case ESTRIKETHROUGH: return Boolean.valueOf(strikethrough);
    case ERUN_DIRECTION: {
        switch (runDirection) {
            // todo: figure out a way to indicate this value
            // case -1: return Integer.valueOf(runDirection);
        case 0: return TextAttribute.RUN_DIRECTION_LTR;
        case 1: return TextAttribute.RUN_DIRECTION_RTL;
        default: return null;
        }
    } // not reachable
    case EBIDI_EMBEDDING: return Integer.valueOf(bidiEmbedding);
    case EJUSTIFICATION: return Float.valueOf(justification);
    case EINPUT_METHOD_HIGHLIGHT: return imHighlight;
    case EINPUT_METHOD_UNDERLINE: return Integer.valueOf(imUnderline);
    case ESWAP_COLORS: return Boolean.valueOf(swapColors);
    case ENUMERIC_SHAPING: return numericShaping;
    case EKERNING: return Integer.valueOf(kerning);
    case ELIGATURES: return Integer.valueOf(ligatures);
    case ETRACKING: return Float.valueOf(tracking);
    default: throw new InternalError();
    }
}
 
Example #27
Source File: AttributeValues.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
public void setTransform(TransformAttribute f) {
    this.transform = (f == null || f.isIdentity())
        ? DEFAULT.transform
        : f.getTransform();
    updateDerivedTransforms();
    update(ETRANSFORM);
}
 
Example #28
Source File: AttributeValues.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
private Object i_get(EAttribute a) {
    switch (a) {
    case EFAMILY: return family;
    case EWEIGHT: return Float.valueOf(weight);
    case EWIDTH: return Float.valueOf(width);
    case EPOSTURE: return Float.valueOf(posture);
    case ESIZE: return Float.valueOf(size);
    case ETRANSFORM:
        return transform == null
            ? TransformAttribute.IDENTITY
            : new TransformAttribute(transform);
    case ESUPERSCRIPT: return Integer.valueOf(superscript);
    case EFONT: return font;
    case ECHAR_REPLACEMENT: return charReplacement;
    case EFOREGROUND: return foreground;
    case EBACKGROUND: return background;
    case EUNDERLINE: return Integer.valueOf(underline);
    case ESTRIKETHROUGH: return Boolean.valueOf(strikethrough);
    case ERUN_DIRECTION: {
        switch (runDirection) {
            // todo: figure out a way to indicate this value
            // case -1: return Integer.valueOf(runDirection);
        case 0: return TextAttribute.RUN_DIRECTION_LTR;
        case 1: return TextAttribute.RUN_DIRECTION_RTL;
        default: return null;
        }
    } // not reachable
    case EBIDI_EMBEDDING: return Integer.valueOf(bidiEmbedding);
    case EJUSTIFICATION: return Float.valueOf(justification);
    case EINPUT_METHOD_HIGHLIGHT: return imHighlight;
    case EINPUT_METHOD_UNDERLINE: return Integer.valueOf(imUnderline);
    case ESWAP_COLORS: return Boolean.valueOf(swapColors);
    case ENUMERIC_SHAPING: return numericShaping;
    case EKERNING: return Integer.valueOf(kerning);
    case ELIGATURES: return Integer.valueOf(ligatures);
    case ETRACKING: return Float.valueOf(tracking);
    default: throw new InternalError();
    }
}
 
Example #29
Source File: AttributeValues.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
public void setTransform(TransformAttribute f) {
    this.transform = (f == null || f.isIdentity())
        ? DEFAULT.transform
        : f.getTransform();
    updateDerivedTransforms();
    update(ETRANSFORM);
}
 
Example #30
Source File: AttributeValues.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
private Object i_get(EAttribute a) {
    switch (a) {
    case EFAMILY: return family;
    case EWEIGHT: return Float.valueOf(weight);
    case EWIDTH: return Float.valueOf(width);
    case EPOSTURE: return Float.valueOf(posture);
    case ESIZE: return Float.valueOf(size);
    case ETRANSFORM:
        return transform == null
            ? TransformAttribute.IDENTITY
            : new TransformAttribute(transform);
    case ESUPERSCRIPT: return Integer.valueOf(superscript);
    case EFONT: return font;
    case ECHAR_REPLACEMENT: return charReplacement;
    case EFOREGROUND: return foreground;
    case EBACKGROUND: return background;
    case EUNDERLINE: return Integer.valueOf(underline);
    case ESTRIKETHROUGH: return Boolean.valueOf(strikethrough);
    case ERUN_DIRECTION: {
        switch (runDirection) {
            // todo: figure out a way to indicate this value
            // case -1: return Integer.valueOf(runDirection);
        case 0: return TextAttribute.RUN_DIRECTION_LTR;
        case 1: return TextAttribute.RUN_DIRECTION_RTL;
        default: return null;
        }
    } // not reachable
    case EBIDI_EMBEDDING: return Integer.valueOf(bidiEmbedding);
    case EJUSTIFICATION: return Float.valueOf(justification);
    case EINPUT_METHOD_HIGHLIGHT: return imHighlight;
    case EINPUT_METHOD_UNDERLINE: return Integer.valueOf(imUnderline);
    case ESWAP_COLORS: return Boolean.valueOf(swapColors);
    case ENUMERIC_SHAPING: return numericShaping;
    case EKERNING: return Integer.valueOf(kerning);
    case ELIGATURES: return Integer.valueOf(ligatures);
    case ETRACKING: return Float.valueOf(tracking);
    default: throw new InternalError();
    }
}