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

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

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


import com.innovenso.townplan.api.value.aspects.ScoreWeight
import jakarta.validation.constraints.NotNull
import lombok.NonNull

trait HasScoreWeight {
	@NotNull
	ScoreWeight score = ScoreWeight.UNKNOWN

	void score(@NonNull ScoreWeight score) {
		this.score = score
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy