Skip to content

Commit

Permalink
Formatting and version numbering
Browse files Browse the repository at this point in the history
  • Loading branch information
aftenkap committed Mar 10, 2015
1 parent 14772e8 commit 6f74baa
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
*
* @author Peter J. Radics
* @version 1.0.0
* @since 0.0.1
* @since 0.1.0
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "default.type")
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/graphdrawing/graphml/Edge.java
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
*
* @author Peter J. Radics
* @version 1.0.0
* @since 0.0.1
* @since 0.1.0
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "edge.type", propOrder = { "description", "keyData", "graph" })
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/graphdrawing/graphml/EdgeIDType.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
*
* @author Peter J. Radics
* @version 1.0.0
* @since 0.0.1
* @since 0.1.0
*/
@XmlType(name = "graph.edgeids.type")
@XmlEnum
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/graphdrawing/graphml/Endpoint.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
*
* @author Peter J. Radics
* @version 1.0.0
* @since 0.0.1
* @since 0.1.0
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "endpoint.type", propOrder = { "description" })
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/graphdrawing/graphml/EndpointType.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
*
* @author Peter J. Radics
* @version 1.0.0
* @since 0.0.1
* @since 0.1.0
*/
@XmlType(name = "endpoint.type.type")
@XmlEnum
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/graphdrawing/graphml/Key.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
*
* @author Peter J. Radics
* @version 1.0.0
* @since 0.0.1
* @since 0.1.0
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "key.type", propOrder = { "description", "defaultValue" })
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/graphdrawing/graphml/KeyData.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
*
* @author Peter J. Radics
* @version 1.0.0
* @since 0.0.1
* @since 0.1.0
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "data.type")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
*
* @author Peter J. Radics
* @version 1.0.0
* @since 0.0.1
* @since 0.1.0
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "data-extension.type", propOrder = { "content" })
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/graphdrawing/graphml/KeyForType.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
*
* @author Peter J. Radics
* @version 1.0.0
* @since 0.0.1
* @since 0.1.0
*/
@XmlType(name = "key.for.type")
@XmlEnum
Expand Down
11 changes: 10 additions & 1 deletion src/main/java/org/graphdrawing/graphml/package-info.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
@javax.xml.bind.annotation.XmlSchema(namespace = "http://graphml.graphdrawing.org/xmlns", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
/**
* This package provides a full implementation of the GraphML data types.
*
* @author Peter J. Radics
* @version 1.0.0
* @since 0.1.0
*/
@javax.xml.bind.annotation.XmlSchema(
namespace = "http://graphml.graphdrawing.org/xmlns",
elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
package org.graphdrawing.graphml;

//@formatter:off
Expand Down

0 comments on commit 6f74baa

Please sign in to comment.