com.innovenso.townplan.dsl.aspects.AbstractAspectConfigurer.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.aspects
import com.innovenso.townplan.dsl.AbstractConfigurer
import com.innovenso.townplan.dsl.TownPlanConfigurer
import lombok.NonNull
abstract class AbstractAspectConfigurer extends AbstractConfigurer {
final String conceptKey
AbstractAspectConfigurer(@NonNull TownPlanConfigurer townPlanConfigurer, @NonNull String conceptKey) {
super(townPlanConfigurer)
this.conceptKey = conceptKey
}
@Override
String configurerDescription() {
return "${aspectType()} (${conceptKey})"
}
abstract String aspectType()
@Override
List dependsOnKeys() {
return [conceptKey]
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy