Searched refs:TransformAttribute (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/font/
H A DTransformAttribute.java48 * The <code>TransformAttribute</code> class provides an immutable
51 public final class TransformAttribute implements Serializable { class in inherits:Serializable
55 * <code>TransformAttribute</code>, or <code>null</code>
69 public TransformAttribute(AffineTransform transform) { method in class:TransformAttribute
78 * transform of this <code>TransformAttribute</code>.
97 * A <code>TransformAttribute</code> representing the identity transform.
100 public static final TransformAttribute IDENTITY = new TransformAttribute(null);
134 * Returns <code>true</code> if rhs is a <code>TransformAttribute</code>
135 * whose transform is equal to this <code>TransformAttribute</cod
[all...]
/openjdk7/jdk/src/share/classes/sun/font/
H A DAttributeMap.java45 import java.awt.font.TransformAttribute;
H A DAttributeValues.java48 import java.awt.font.TransformAttribute;
118 public void setTransform(TransformAttribute f) {
637 if (o instanceof TransformAttribute) {
638 TransformAttribute ta = (TransformAttribute)o;
693 ? TransformAttribute.IDENTITY
694 : new TransformAttribute(transform);

Completed in 44 milliseconds