当前位置: 首页>>代码示例>>Java>>正文


Java TextAttribute.FAMILY属性代码示例

本文整理汇总了Java中java.awt.font.TextAttribute.FAMILY属性的典型用法代码示例。如果您正苦于以下问题:Java TextAttribute.FAMILY属性的具体用法?Java TextAttribute.FAMILY怎么用?Java TextAttribute.FAMILY使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在java.awt.font.TextAttribute的用法示例。


在下文中一共展示了TextAttribute.FAMILY属性的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getAvailableAttributes

/**
 * Returns the keys of all the attributes supported by this
 * <code>Font</code>.  These attributes can be used to derive other
 * fonts.
 * @return an array containing the keys of all the attributes
 *          supported by this <code>Font</code>.
 * @since 1.2
 */
public Attribute[] getAvailableAttributes() {
    // FONT is not supported by Font

    Attribute attributes[] = {
        TextAttribute.FAMILY,
        TextAttribute.WEIGHT,
        TextAttribute.WIDTH,
        TextAttribute.POSTURE,
        TextAttribute.SIZE,
        TextAttribute.TRANSFORM,
        TextAttribute.SUPERSCRIPT,
        TextAttribute.CHAR_REPLACEMENT,
        TextAttribute.FOREGROUND,
        TextAttribute.BACKGROUND,
        TextAttribute.UNDERLINE,
        TextAttribute.STRIKETHROUGH,
        TextAttribute.RUN_DIRECTION,
        TextAttribute.BIDI_EMBEDDING,
        TextAttribute.JUSTIFICATION,
        TextAttribute.INPUT_METHOD_HIGHLIGHT,
        TextAttribute.INPUT_METHOD_UNDERLINE,
        TextAttribute.SWAP_COLORS,
        TextAttribute.NUMERIC_SHAPING,
        TextAttribute.KERNING,
        TextAttribute.LIGATURES,
        TextAttribute.TRACKING,
    };

    return attributes;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:38,代码来源:Font.java

示例2: getAvailableAttributes

/**
 * Returns the keys of all the attributes supported by this
 * {@code Font}.  These attributes can be used to derive other
 * fonts.
 * @return an array containing the keys of all the attributes
 *          supported by this {@code Font}.
 * @since 1.2
 */
public Attribute[] getAvailableAttributes() {
    // FONT is not supported by Font

    Attribute attributes[] = {
        TextAttribute.FAMILY,
        TextAttribute.WEIGHT,
        TextAttribute.WIDTH,
        TextAttribute.POSTURE,
        TextAttribute.SIZE,
        TextAttribute.TRANSFORM,
        TextAttribute.SUPERSCRIPT,
        TextAttribute.CHAR_REPLACEMENT,
        TextAttribute.FOREGROUND,
        TextAttribute.BACKGROUND,
        TextAttribute.UNDERLINE,
        TextAttribute.STRIKETHROUGH,
        TextAttribute.RUN_DIRECTION,
        TextAttribute.BIDI_EMBEDDING,
        TextAttribute.JUSTIFICATION,
        TextAttribute.INPUT_METHOD_HIGHLIGHT,
        TextAttribute.INPUT_METHOD_UNDERLINE,
        TextAttribute.SWAP_COLORS,
        TextAttribute.NUMERIC_SHAPING,
        TextAttribute.KERNING,
        TextAttribute.LIGATURES,
        TextAttribute.TRACKING,
    };

    return attributes;
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:38,代码来源:Font.java

示例3: instantiate

protected Expression instantiate(Object oldInstance, Encoder out) {
    Font font = (Font) oldInstance;

    int count = 0;
    String family = null;
    int style = Font.PLAIN;
    int size = 12;

    Map<TextAttribute, ?> basic = font.getAttributes();
    Map<TextAttribute, Object> clone = new HashMap<>(basic.size());
    for (TextAttribute key : basic.keySet()) {
        Object value = basic.get(key);
        if (value != null) {
            clone.put(key, value);
        }
        if (key == TextAttribute.FAMILY) {
            if (value instanceof String) {
                count++;
                family = (String) value;
            }
        }
        else if (key == TextAttribute.WEIGHT) {
            if (TextAttribute.WEIGHT_REGULAR.equals(value)) {
                count++;
            } else if (TextAttribute.WEIGHT_BOLD.equals(value)) {
                count++;
                style |= Font.BOLD;
            }
        }
        else if (key == TextAttribute.POSTURE) {
            if (TextAttribute.POSTURE_REGULAR.equals(value)) {
                count++;
            } else if (TextAttribute.POSTURE_OBLIQUE.equals(value)) {
                count++;
                style |= Font.ITALIC;
            }
        } else if (key == TextAttribute.SIZE) {
            if (value instanceof Number) {
                Number number = (Number) value;
                size = number.intValue();
                if (size == number.floatValue()) {
                    count++;
                }
            }
        }
    }
    Class<?> type = font.getClass();
    if (count == clone.size()) {
        return new Expression(font, type, "new", new Object[]{family, style, size});
    }
    if (type == Font.class) {
        return new Expression(font, type, "getFont", new Object[]{clone});
    }
    return new Expression(font, type, "new", new Object[]{Font.getFont(clone)});
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:55,代码来源:MetaData.java

示例4: validate

private static void validate(final TestValue object) {
    // reference to static field
    if (object.font_default != TextAttribute.FONT) {
        throw new Error("Wrong font_default: " + object.font_default);
    }
    if (object.family_default != TextAttribute.FAMILY) {
        throw new Error("Wrong family_default: " + object.family_default);
    }
    if (object.family_set1 != object.family_default) {
        throw new Error("Wrong family_set1: " + object.family_set1);
    }
    if (object.family_set2 != object.family_default) {
        throw new Error("Wrong family_set2: " + object.family_set2);
    }
    if (object.family_set3 != object.family_default) {
        throw new Error("Wrong family_set3: " + object.family_set3);
    }
    // primitive small
    if (object.int_1_default != 1) {
        throw new Error("Wrong int_1_default: " + object.int_1_default);
    }
    if (object.int_10_default != 10) {
        throw new Error("Wrong int_10_default: " + object.int_10_default);
    }
    if (object.int_10_set1 != object.int_10_default) {
        throw new Error("Wrong int_10_set1: " + object.int_10_set1);
    }
    if (object.int_10_set2 != object.int_10_default) {
        throw new Error("Wrong int_10_set2: " + object.int_10_set2);
    }
    if (object.int_10_set3 != object.int_10_default) {
        throw new Error("Wrong int_10_set3: " + object.int_10_set3);
    }
    // primitive big
    if (object.int_1000_default != 1000) {
        throw new Error("Wrong int_1000_default: " + object.int_1000_default);
    }
    if (object.int_2000_default != 2000) {
        throw new Error("Wrong int_2000_default: " + object.int_2000_default);
    }
    if (object.int_2000_set1 != object.int_2000_default) {
        throw new Error("Wrong int_2000_set1: " + object.int_2000_set1);
    }
    if (object.int_2000_set2 != object.int_2000_default) {
        throw new Error("Wrong int_2000_set2: " + object.int_2000_set2);
    }
    if (object.int_2000_set3 != object.int_2000_default) {
        throw new Error("Wrong int_2000_set3: " + object.int_2000_set3);
    }
    // wrappers
    if (!object.integer_1_default.equals(new Integer(1))) {
        throw new Error("Wrong integer_1_default: " + object.integer_1_default);
    }
    if (!object.integer_10_default.equals(new Integer(10))) {
        throw new Error("Wrong integer_10_default: " + object.integer_10_default);
    }
    if (object.integer_10_set1 != object.integer_10_default) {
        throw new Error("Wrong integer_10_set1: " + object.integer_10_set1);
    }
    if (object.integer_10_set2 != object.integer_10_default) {
        throw new Error("Wrong integer_10_set2: " + object.integer_10_set2);
    }
    if (object.integer_10_set3 != object.integer_10_default) {
        throw new Error("Wrong integer_10_set3: " + object.integer_10_set3);
    }
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:66,代码来源:ReferenceToNonStaticField.java


注:本文中的java.awt.font.TextAttribute.FAMILY属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。