Hallo,
ich brauche einen Font mit dem man einen Text durchgestrichen darstellen kann, habe im Internet das hier gefunden:
gibt es eine bessere Lösung?
Diese funktioniert zwar, bekomme aber eine CompilerWarnung:
danke schon mal!
ich brauche einen Font mit dem man einen Text durchgestrichen darstellen kann, habe im Internet das hier gefunden:
Java:
Font font = new Font("helvetica", Font.PLAIN, 12);
Map attributes = font.getAttributes();
attributes.put(TextAttribute.STRIKETHROUGH, TextAttribute.STRIKETHROUGH_ON);
Font newFont = new Font(attributes);
gibt es eine bessere Lösung?
Diese funktioniert zwar, bekomme aber eine CompilerWarnung:
Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized
danke schon mal!