com.bld.commons.classes.model.ModelClasses Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of class-generator Show documentation
Show all versions of class-generator Show documentation
Demo project for Spring Boot
The newest version!
/**
* @author Francesco Baldi
* @mail [email protected]
* @class bld.commons.classes.model.ModelClasses.java
*/
package com.bld.commons.classes.model;
import java.util.ArrayList;
import java.util.List;
import jakarta.validation.Valid;
import jakarta.validation.constraints.NotNull;
/**
* The Class ModelClasses.
*/
public class ModelClasses implements ModelComponentClass{
/** The classes. */
@NotNull
@Valid
private List classes;
/**
* Instantiates a new model classes.
*/
public ModelClasses() {
super();
this.classes=new ArrayList<>();
}
/**
* Gets the classes.
*
* @return the classes
*/
public List getClasses() {
return classes;
}
/**
* Sets the classes.
*
* @param classes the new classes
*/
public void setClasses(List classes) {
this.classes = classes;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy