src/share/classes/sun/font/Decoration.java

Print this page

        

*** 44,53 **** --- 44,54 ---- import java.awt.geom.Area; import java.awt.geom.Line2D; import java.awt.geom.Rectangle2D; import java.awt.geom.GeneralPath; + import java.text.AttributedCharacterIterator.Attribute; import static sun.font.AttributeValues.*; import static sun.font.EAttribute.*; /**
*** 105,115 **** /** * Return a Decoration appropriate for the the given Map. * @param attributes the Map used to determine the Decoration */ ! public static Decoration getDecoration(Map attributes) { if (attributes == null) { return PLAIN; } return getDecoration(AttributeValues.fromMap(attributes)); } --- 106,116 ---- /** * Return a Decoration appropriate for the the given Map. * @param attributes the Map used to determine the Decoration */ ! public static Decoration getDecoration(Map<? extends Attribute, ?> attributes) { if (attributes == null) { return PLAIN; } return getDecoration(AttributeValues.fromMap(attributes)); }