com.innovenso.townplan.dsl.traits.HasScoreWeight.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of innovenso-townplanner-dsl Show documentation
Show all versions of innovenso-townplanner-dsl Show documentation
Domain Specific Language for the Innovenso Townplanner
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