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

com.innovenso.townplan.dsl.aspects.AbstractAspectConfigurer.groovy Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
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