Fixed javadoc.
This commit is contained in:
parent
8f6dfadba8
commit
b183d7bb09
2 changed files with 7 additions and 9 deletions
|
@ -44,7 +44,6 @@ public final class Constants {
|
||||||
*/
|
*/
|
||||||
public static final String DEFAULT_CLASS_NAME = "GeneratedVersion";
|
public static final String DEFAULT_CLASS_NAME = "GeneratedVersion";
|
||||||
/**
|
/**
|
||||||
* /**
|
|
||||||
* The default Java mustache template.
|
* The default Java mustache template.
|
||||||
*/
|
*/
|
||||||
public static final String DEFAULT_JAVA_TEMPLATE = "semver.mustache";
|
public static final String DEFAULT_JAVA_TEMPLATE = "semver.mustache";
|
||||||
|
@ -76,7 +75,6 @@ public final class Constants {
|
||||||
* The empty string.
|
* The empty string.
|
||||||
*/
|
*/
|
||||||
public static final String EMPTY = "";
|
public static final String EMPTY = "";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The build metadata property key.
|
* The build metadata property key.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -52,7 +52,7 @@ public class VersionInfo {
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a new object with default values
|
* Creates a new object with default values.
|
||||||
*/
|
*/
|
||||||
public VersionInfo() {
|
public VersionInfo() {
|
||||||
major = Constants.DEFAULT_MAJOR;
|
major = Constants.DEFAULT_MAJOR;
|
||||||
|
@ -82,18 +82,18 @@ public class VersionInfo {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the build metadata.
|
* Returns the build meta-data.
|
||||||
*
|
*
|
||||||
* @return The build metadata.
|
* @return The build meta-data.
|
||||||
*/
|
*/
|
||||||
public String getBuildMeta() {
|
public String getBuildMeta() {
|
||||||
return buildMeta;
|
return buildMeta;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the build metadata.
|
* Sets the build meta-data.
|
||||||
*
|
*
|
||||||
* @param buildMeta The new build metadata.
|
* @param buildMeta The new build meta-data.
|
||||||
*/
|
*/
|
||||||
public void setBuildMeta(final String buildMeta) {
|
public void setBuildMeta(final String buildMeta) {
|
||||||
this.buildMeta = buildMeta;
|
this.buildMeta = buildMeta;
|
||||||
|
@ -172,9 +172,9 @@ public class VersionInfo {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the package name version.
|
* Sets the package name.
|
||||||
*
|
*
|
||||||
* @param packageName The new patch version.
|
* @param packageName The new package name.
|
||||||
*/
|
*/
|
||||||
public void setPackageName(String packageName) {
|
public void setPackageName(String packageName) {
|
||||||
this.packageName = packageName;
|
this.packageName = packageName;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue