japicmp.output.extapi.jpa.model.JpaAttribute Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of japicmp Show documentation
Show all versions of japicmp Show documentation
japicmp is a library that computes the differences between two
versions of a jar file/artifact in order to ease the API documentation for clients/customers.
The newest version!
package japicmp.output.extapi.jpa.model;
import japicmp.model.JApiChangeStatus;
public class JpaAttribute {
private final JApiChangeStatus changeStatus;
public JpaAttribute(JApiChangeStatus changeStatus) {
this.changeStatus = evaluateChangeStatus(changeStatus);
}
private JApiChangeStatus evaluateChangeStatus(JApiChangeStatus changeStatus) {
if (changeStatus == JApiChangeStatus.UNCHANGED) {
}
return changeStatus;
}
}