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

com.innovenso.townplan.dsl.traits.HasOptionalSystemKey.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.dsl.concepts.system.ITSystemConfigurer
import lombok.NonNull

trait HasOptionalSystemKey {
	String system

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

	void system(@NonNull ITSystemConfigurer systemConfigurer) {
		this.system = systemConfigurer.key
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy