org.umlg.runtime.validation.MaxLength Maven / Gradle / Ivy
package org.umlg.runtime.validation;
public class MaxLength implements UmlgValidation {
private int maxLength;
public MaxLength(int maxLength) {
super();
this.maxLength = maxLength;
}
}