Instantiates a new TransformAttribute from the specified AffineTransform.
if (transform == null) {
// awt.94=transform can not be null
throw new IllegalArgumentException(Messages.getString("awt.94")); //$NON-NLS-1$
}
if (!transform.isIdentity()) {
this.fTransform = new AffineTransform(transform);
}