Updated copyright and license.
[meviz.git] / src / main / java / eu / svjatoslav / meviz / htmlindexer / metadata / Dimension.java
index e9993b1..b25c6b7 100755 (executable)
@@ -1,11 +1,11 @@
 /*
  * Meviz - Various tools collection to work with multimedia.
- * Copyright (C) 2012, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
+ * Copyright (C) 2012 -- 2019, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
  *
  * This program is free software; you can redistribute it and/or
- * modify it under the terms of version 2 of the GNU General Public License
- * as published by the Free Software Foundation.
- */
+ * modify it under the terms of version 3 of the GNU Lesser General Public License
+ * or later as published by the Free Software Foundation.
+*/
 
 package eu.svjatoslav.meviz.htmlindexer.metadata;
 
@@ -17,67 +17,65 @@ import java.io.Serializable;
 
 public class Dimension implements Serializable, Comparable<Dimension> {
 
-       private static final long serialVersionUID = -1039288266937331829L;
+    private static final long serialVersionUID = -1039288266937331829L;
 
-       public int width;
-       public int height;
+    public int width;
+    public int height;
 
-       public Dimension() {
-               width = 0;
-               height = 0;
-       }
+    private Dimension() {
+        width = 0;
+        height = 0;
+    }
 
-       public Dimension(final Dimension origial) {
-               width = origial.width;
-               height = origial.height;
-       }
+    public Dimension(final Dimension origial) {
+        width = origial.width;
+        height = origial.height;
+    }
 
-       public Dimension(final int width, final int height) {
-               this.width = width;
-               this.height = height;
-       }
+    public Dimension(final int width, final int height) {
+        this.width = width;
+        this.height = height;
+    }
 
-       @Override
-       public int compareTo(final Dimension anotherDimension) {
-               if (width < anotherDimension.width)
-                       return -1;
-               if (width > anotherDimension.width)
-                       return 1;
+    @Override
+    public int compareTo(final Dimension anotherDimension) {
+        if (width < anotherDimension.width)
+            return -1;
+        if (width > anotherDimension.width)
+            return 1;
 
-               if (height < anotherDimension.height)
-                       return -1;
-               if (height > anotherDimension.height)
-                       return 1;
+        if (height < anotherDimension.height)
+            return -1;
+        if (height > anotherDimension.height)
+            return 1;
 
-               return 0;
-       }
+        return 0;
+    }
 
-       public boolean equals(final Dimension anotherDimension) {
-               if (compareTo(anotherDimension) == 0)
-                       return true;
-               return false;
-       }
+    public boolean equals(final Dimension anotherDimension) {
+        return compareTo(anotherDimension) == 0;
+    }
 
-       public int getArea() {
-               return width * height;
-       }
+    public int getArea() {
+        return width * height;
+    }
 
-       public java.awt.Dimension getAwtDimension() {
-               return new java.awt.Dimension(width, height);
-       }
+    public java.awt.Dimension getAwtDimension() {
+        return new java.awt.Dimension(width, height);
+    }
 
-       public Dimension getScaled(final double multiplicationFactor) {
-               final Dimension result = new Dimension();
+    public Dimension getScaled(final double multiplicationFactor) {
+        final Dimension result = new Dimension();
 
-               result.width = (int) ((width) * multiplicationFactor);
-               result.height = (int) ((height) * multiplicationFactor);
+        result.width = (int) ((width) * multiplicationFactor);
+        result.height = (int) ((height) * multiplicationFactor);
 
-               return result;
-       }
+        return result;
+    }
 
-       @Override
-       public String toString() {
-               return "Dimension [width=" + width + ", height=" + height + "]";
-       }
+    @Override
+    public String toString() {
+        return "Dimension [width=" + width + ", height=" + height + "]";
+    }
 
 }