Adjust JavaDoc
diff --git a/plugins/org.eclipse.graphiti/src/org/eclipse/graphiti/datatypes/IAdvancedLocation.java b/plugins/org.eclipse.graphiti/src/org/eclipse/graphiti/datatypes/IAdvancedLocation.java
index 72557e5..df5660b 100644
--- a/plugins/org.eclipse.graphiti/src/org/eclipse/graphiti/datatypes/IAdvancedLocation.java
+++ b/plugins/org.eclipse.graphiti/src/org/eclipse/graphiti/datatypes/IAdvancedLocation.java
@@ -30,7 +30,7 @@
ILocation getLocationCopy();
/**
- * Sets the location
+ * Sets the location.
*
* @param x
* the new x coordinate of the location
@@ -41,7 +41,7 @@
ILocation setLocation(int x, int y);
/**
- * Sets the location
+ * Sets the location.
*
* @param location
* the location which contains the new x and y coordinates
@@ -50,7 +50,7 @@
ILocation setLocation(ILocation location);
/**
- * Changes the current location
+ * Changes the current location.
*
* @param amount
* x and y coordinate of the location will be multiplied with
@@ -59,7 +59,7 @@
void scale(double amount);
/**
- * Translates the current location
+ * Translates the current location.
*
* @param dx
* this value will be added to the x coordinate
diff --git a/plugins/org.eclipse.graphiti/src/org/eclipse/graphiti/datatypes/IDimension.java b/plugins/org.eclipse.graphiti/src/org/eclipse/graphiti/datatypes/IDimension.java
index 4352061..cbd4da7 100644
--- a/plugins/org.eclipse.graphiti/src/org/eclipse/graphiti/datatypes/IDimension.java
+++ b/plugins/org.eclipse.graphiti/src/org/eclipse/graphiti/datatypes/IDimension.java
@@ -24,14 +24,14 @@
public interface IDimension {
/**
- * Gets the width
+ * Gets the width.
*
* @return the width of this dimension
*/
int getWidth();
/**
- * Sets the width
+ * Sets the width.
*
* @param width
* the new width of this dimension
@@ -39,14 +39,14 @@
void setWidth(int width);
/**
- * Gets the height
+ * Gets the height.
*
* @return the height of this dimension
*/
int getHeight();
/**
- * Sets the height
+ * Sets the height.
*
* @param height
* the new height of this dimension
diff --git a/plugins/org.eclipse.graphiti/src/org/eclipse/graphiti/datatypes/ILocation.java b/plugins/org.eclipse.graphiti/src/org/eclipse/graphiti/datatypes/ILocation.java
index 748bde0..b3829eb 100644
--- a/plugins/org.eclipse.graphiti/src/org/eclipse/graphiti/datatypes/ILocation.java
+++ b/plugins/org.eclipse.graphiti/src/org/eclipse/graphiti/datatypes/ILocation.java
@@ -24,14 +24,14 @@
public interface ILocation {
/**
- * Gets the y value
+ * Gets the y value.
*
* @return the y value of this location
*/
int getY();
/**
- * Sets the y coordinate of this location
+ * Sets the y coordinate of this location.
*
* @param y
* the new y coordinate
@@ -39,14 +39,14 @@
void setY(int y);
/**
- * Gets the x value
+ * Gets the x value.
*
* @return the x value of this location
*/
int getX();
/**
- * Sets the x coordinate of this location
+ * Sets the x coordinate of this location.
*
* @param x
* the new x coordinate
diff --git a/plugins/org.eclipse.graphiti/src/org/eclipse/graphiti/datatypes/IRectangle.java b/plugins/org.eclipse.graphiti/src/org/eclipse/graphiti/datatypes/IRectangle.java
index b6eaafe..1b3ba38 100644
--- a/plugins/org.eclipse.graphiti/src/org/eclipse/graphiti/datatypes/IRectangle.java
+++ b/plugins/org.eclipse.graphiti/src/org/eclipse/graphiti/datatypes/IRectangle.java
@@ -30,7 +30,7 @@
public IRectangle getRectangleCopy();
/**
- * Sets the location and dimension of the rectangle
+ * Sets the location and dimension of the rectangle.
*
* @param x
* the x coordinate of the rectangle