Java Code Examples for java.awt.font.TransformAttribute#equals()
The following examples show how to use
java.awt.font.TransformAttribute#equals() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: TransformEqualityTest.java From dragonwell8_jdk with GNU General Public License v2.0 | 6 votes |
public static void main(String[] args) { AffineTransform tx1 = new AffineTransform(1, 0, 1, 1, 0, 0); AffineTransform tx2 = new AffineTransform(1, 0, 1, 1, 0, 0); AffineTransform tx3 = new AffineTransform(2, 0, 1, 1, 0, 0); TransformAttribute ta1a = new TransformAttribute(tx1); TransformAttribute ta1b = new TransformAttribute(tx1); TransformAttribute ta2 = new TransformAttribute(tx2); TransformAttribute ta3 = new TransformAttribute(tx3); if (ta1a.equals(null)) { throw new RuntimeException("should not be equal to null."); } if (!ta1a.equals(ta1a)) { throw new RuntimeException("(1) should be equal."); } if (!ta1a.equals(ta1b)) { throw new RuntimeException("(2) should be equal."); } if (!ta1a.equals(ta2)) { throw new RuntimeException("(3) should be equal."); } if (ta2.equals(ta3)) { throw new RuntimeException("should be different."); } }
Example 2
Source File: TransformEqualityTest.java From TencentKona-8 with GNU General Public License v2.0 | 6 votes |
public static void main(String[] args) { AffineTransform tx1 = new AffineTransform(1, 0, 1, 1, 0, 0); AffineTransform tx2 = new AffineTransform(1, 0, 1, 1, 0, 0); AffineTransform tx3 = new AffineTransform(2, 0, 1, 1, 0, 0); TransformAttribute ta1a = new TransformAttribute(tx1); TransformAttribute ta1b = new TransformAttribute(tx1); TransformAttribute ta2 = new TransformAttribute(tx2); TransformAttribute ta3 = new TransformAttribute(tx3); if (ta1a.equals(null)) { throw new RuntimeException("should not be equal to null."); } if (!ta1a.equals(ta1a)) { throw new RuntimeException("(1) should be equal."); } if (!ta1a.equals(ta1b)) { throw new RuntimeException("(2) should be equal."); } if (!ta1a.equals(ta2)) { throw new RuntimeException("(3) should be equal."); } if (ta2.equals(ta3)) { throw new RuntimeException("should be different."); } }
Example 3
Source File: TransformEqualityTest.java From jdk8u60 with GNU General Public License v2.0 | 6 votes |
public static void main(String[] args) { AffineTransform tx1 = new AffineTransform(1, 0, 1, 1, 0, 0); AffineTransform tx2 = new AffineTransform(1, 0, 1, 1, 0, 0); AffineTransform tx3 = new AffineTransform(2, 0, 1, 1, 0, 0); TransformAttribute ta1a = new TransformAttribute(tx1); TransformAttribute ta1b = new TransformAttribute(tx1); TransformAttribute ta2 = new TransformAttribute(tx2); TransformAttribute ta3 = new TransformAttribute(tx3); if (ta1a.equals(null)) { throw new RuntimeException("should not be equal to null."); } if (!ta1a.equals(ta1a)) { throw new RuntimeException("(1) should be equal."); } if (!ta1a.equals(ta1b)) { throw new RuntimeException("(2) should be equal."); } if (!ta1a.equals(ta2)) { throw new RuntimeException("(3) should be equal."); } if (ta2.equals(ta3)) { throw new RuntimeException("should be different."); } }
Example 4
Source File: TransformEqualityTest.java From openjdk-jdk8u with GNU General Public License v2.0 | 6 votes |
public static void main(String[] args) { AffineTransform tx1 = new AffineTransform(1, 0, 1, 1, 0, 0); AffineTransform tx2 = new AffineTransform(1, 0, 1, 1, 0, 0); AffineTransform tx3 = new AffineTransform(2, 0, 1, 1, 0, 0); TransformAttribute ta1a = new TransformAttribute(tx1); TransformAttribute ta1b = new TransformAttribute(tx1); TransformAttribute ta2 = new TransformAttribute(tx2); TransformAttribute ta3 = new TransformAttribute(tx3); if (ta1a.equals(null)) { throw new RuntimeException("should not be equal to null."); } if (!ta1a.equals(ta1a)) { throw new RuntimeException("(1) should be equal."); } if (!ta1a.equals(ta1b)) { throw new RuntimeException("(2) should be equal."); } if (!ta1a.equals(ta2)) { throw new RuntimeException("(3) should be equal."); } if (ta2.equals(ta3)) { throw new RuntimeException("should be different."); } }
Example 5
Source File: TransformEqualityTest.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 6 votes |
public static void main(String[] args) { AffineTransform tx1 = new AffineTransform(1, 0, 1, 1, 0, 0); AffineTransform tx2 = new AffineTransform(1, 0, 1, 1, 0, 0); AffineTransform tx3 = new AffineTransform(2, 0, 1, 1, 0, 0); TransformAttribute ta1a = new TransformAttribute(tx1); TransformAttribute ta1b = new TransformAttribute(tx1); TransformAttribute ta2 = new TransformAttribute(tx2); TransformAttribute ta3 = new TransformAttribute(tx3); if (ta1a.equals(null)) { throw new RuntimeException("should not be equal to null."); } if (!ta1a.equals(ta1a)) { throw new RuntimeException("(1) should be equal."); } if (!ta1a.equals(ta1b)) { throw new RuntimeException("(2) should be equal."); } if (!ta1a.equals(ta2)) { throw new RuntimeException("(3) should be equal."); } if (ta2.equals(ta3)) { throw new RuntimeException("should be different."); } }
Example 6
Source File: TransformEqualityTest.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
public static void main(String[] args) { AffineTransform tx1 = new AffineTransform(1, 0, 1, 1, 0, 0); AffineTransform tx2 = new AffineTransform(1, 0, 1, 1, 0, 0); AffineTransform tx3 = new AffineTransform(2, 0, 1, 1, 0, 0); TransformAttribute ta1a = new TransformAttribute(tx1); TransformAttribute ta1b = new TransformAttribute(tx1); TransformAttribute ta2 = new TransformAttribute(tx2); TransformAttribute ta3 = new TransformAttribute(tx3); if (ta1a.equals(null)) { throw new RuntimeException("should not be equal to null."); } if (!ta1a.equals(ta1a)) { throw new RuntimeException("(1) should be equal."); } if (!ta1a.equals(ta1b)) { throw new RuntimeException("(2) should be equal."); } if (!ta1a.equals(ta2)) { throw new RuntimeException("(3) should be equal."); } if (ta2.equals(ta3)) { throw new RuntimeException("should be different."); } }
Example 7
Source File: TransformEqualityTest.java From jdk8u-jdk with GNU General Public License v2.0 | 6 votes |
public static void main(String[] args) { AffineTransform tx1 = new AffineTransform(1, 0, 1, 1, 0, 0); AffineTransform tx2 = new AffineTransform(1, 0, 1, 1, 0, 0); AffineTransform tx3 = new AffineTransform(2, 0, 1, 1, 0, 0); TransformAttribute ta1a = new TransformAttribute(tx1); TransformAttribute ta1b = new TransformAttribute(tx1); TransformAttribute ta2 = new TransformAttribute(tx2); TransformAttribute ta3 = new TransformAttribute(tx3); if (ta1a.equals(null)) { throw new RuntimeException("should not be equal to null."); } if (!ta1a.equals(ta1a)) { throw new RuntimeException("(1) should be equal."); } if (!ta1a.equals(ta1b)) { throw new RuntimeException("(2) should be equal."); } if (!ta1a.equals(ta2)) { throw new RuntimeException("(3) should be equal."); } if (ta2.equals(ta3)) { throw new RuntimeException("should be different."); } }
Example 8
Source File: TransformEqualityTest.java From hottub with GNU General Public License v2.0 | 6 votes |
public static void main(String[] args) { AffineTransform tx1 = new AffineTransform(1, 0, 1, 1, 0, 0); AffineTransform tx2 = new AffineTransform(1, 0, 1, 1, 0, 0); AffineTransform tx3 = new AffineTransform(2, 0, 1, 1, 0, 0); TransformAttribute ta1a = new TransformAttribute(tx1); TransformAttribute ta1b = new TransformAttribute(tx1); TransformAttribute ta2 = new TransformAttribute(tx2); TransformAttribute ta3 = new TransformAttribute(tx3); if (ta1a.equals(null)) { throw new RuntimeException("should not be equal to null."); } if (!ta1a.equals(ta1a)) { throw new RuntimeException("(1) should be equal."); } if (!ta1a.equals(ta1b)) { throw new RuntimeException("(2) should be equal."); } if (!ta1a.equals(ta2)) { throw new RuntimeException("(3) should be equal."); } if (ta2.equals(ta3)) { throw new RuntimeException("should be different."); } }
Example 9
Source File: TransformEqualityTest.java From openjdk-8-source with GNU General Public License v2.0 | 6 votes |
public static void main(String[] args) { AffineTransform tx1 = new AffineTransform(1, 0, 1, 1, 0, 0); AffineTransform tx2 = new AffineTransform(1, 0, 1, 1, 0, 0); AffineTransform tx3 = new AffineTransform(2, 0, 1, 1, 0, 0); TransformAttribute ta1a = new TransformAttribute(tx1); TransformAttribute ta1b = new TransformAttribute(tx1); TransformAttribute ta2 = new TransformAttribute(tx2); TransformAttribute ta3 = new TransformAttribute(tx3); if (ta1a.equals(null)) { throw new RuntimeException("should not be equal to null."); } if (!ta1a.equals(ta1a)) { throw new RuntimeException("(1) should be equal."); } if (!ta1a.equals(ta1b)) { throw new RuntimeException("(2) should be equal."); } if (!ta1a.equals(ta2)) { throw new RuntimeException("(3) should be equal."); } if (ta2.equals(ta3)) { throw new RuntimeException("should be different."); } }
Example 10
Source File: TransformEqualityTest.java From openjdk-8 with GNU General Public License v2.0 | 6 votes |
public static void main(String[] args) { AffineTransform tx1 = new AffineTransform(1, 0, 1, 1, 0, 0); AffineTransform tx2 = new AffineTransform(1, 0, 1, 1, 0, 0); AffineTransform tx3 = new AffineTransform(2, 0, 1, 1, 0, 0); TransformAttribute ta1a = new TransformAttribute(tx1); TransformAttribute ta1b = new TransformAttribute(tx1); TransformAttribute ta2 = new TransformAttribute(tx2); TransformAttribute ta3 = new TransformAttribute(tx3); if (ta1a.equals(null)) { throw new RuntimeException("should not be equal to null."); } if (!ta1a.equals(ta1a)) { throw new RuntimeException("(1) should be equal."); } if (!ta1a.equals(ta1b)) { throw new RuntimeException("(2) should be equal."); } if (!ta1a.equals(ta2)) { throw new RuntimeException("(3) should be equal."); } if (ta2.equals(ta3)) { throw new RuntimeException("should be different."); } }
Example 11
Source File: TransformEqualityTest.java From jdk8u_jdk with GNU General Public License v2.0 | 6 votes |
public static void main(String[] args) { AffineTransform tx1 = new AffineTransform(1, 0, 1, 1, 0, 0); AffineTransform tx2 = new AffineTransform(1, 0, 1, 1, 0, 0); AffineTransform tx3 = new AffineTransform(2, 0, 1, 1, 0, 0); TransformAttribute ta1a = new TransformAttribute(tx1); TransformAttribute ta1b = new TransformAttribute(tx1); TransformAttribute ta2 = new TransformAttribute(tx2); TransformAttribute ta3 = new TransformAttribute(tx3); if (ta1a.equals(null)) { throw new RuntimeException("should not be equal to null."); } if (!ta1a.equals(ta1a)) { throw new RuntimeException("(1) should be equal."); } if (!ta1a.equals(ta1b)) { throw new RuntimeException("(2) should be equal."); } if (!ta1a.equals(ta2)) { throw new RuntimeException("(3) should be equal."); } if (ta2.equals(ta3)) { throw new RuntimeException("should be different."); } }
Example 12
Source File: TransformEqualityTest.java From jdk8u-jdk with GNU General Public License v2.0 | 6 votes |
public static void main(String[] args) { AffineTransform tx1 = new AffineTransform(1, 0, 1, 1, 0, 0); AffineTransform tx2 = new AffineTransform(1, 0, 1, 1, 0, 0); AffineTransform tx3 = new AffineTransform(2, 0, 1, 1, 0, 0); TransformAttribute ta1a = new TransformAttribute(tx1); TransformAttribute ta1b = new TransformAttribute(tx1); TransformAttribute ta2 = new TransformAttribute(tx2); TransformAttribute ta3 = new TransformAttribute(tx3); if (ta1a.equals(null)) { throw new RuntimeException("should not be equal to null."); } if (!ta1a.equals(ta1a)) { throw new RuntimeException("(1) should be equal."); } if (!ta1a.equals(ta1b)) { throw new RuntimeException("(2) should be equal."); } if (!ta1a.equals(ta2)) { throw new RuntimeException("(3) should be equal."); } if (ta2.equals(ta3)) { throw new RuntimeException("should be different."); } }
Example 13
Source File: TransformEqualityTest.java From jdk8u-dev-jdk with GNU General Public License v2.0 | 6 votes |
public static void main(String[] args) { AffineTransform tx1 = new AffineTransform(1, 0, 1, 1, 0, 0); AffineTransform tx2 = new AffineTransform(1, 0, 1, 1, 0, 0); AffineTransform tx3 = new AffineTransform(2, 0, 1, 1, 0, 0); TransformAttribute ta1a = new TransformAttribute(tx1); TransformAttribute ta1b = new TransformAttribute(tx1); TransformAttribute ta2 = new TransformAttribute(tx2); TransformAttribute ta3 = new TransformAttribute(tx3); if (ta1a.equals(null)) { throw new RuntimeException("should not be equal to null."); } if (!ta1a.equals(ta1a)) { throw new RuntimeException("(1) should be equal."); } if (!ta1a.equals(ta1b)) { throw new RuntimeException("(2) should be equal."); } if (!ta1a.equals(ta2)) { throw new RuntimeException("(3) should be equal."); } if (ta2.equals(ta3)) { throw new RuntimeException("should be different."); } }