All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.innovenso.townplan.dsl.traits.HasRequiredTitle.groovy Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
package com.innovenso.townplan.dsl.traits

import jakarta.validation.constraints.NotBlank
import lombok.NonNull

trait HasRequiredTitle {
	@NotBlank
	String title

	void title(@NonNull String title) {
		this.title = title
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy