org.bitbucket.fermenter.stout.mda.JavaPackagedElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stout-spring-mda Show documentation
Show all versions of stout-spring-mda Show documentation
Contains resources for generating application code that realizes a
Spring-based business object and business service architecture
package org.bitbucket.fermenter.stout.mda;
/**
* Defines common and default methods for a packaged Java element.
*/
public interface JavaPackagedElement extends JavaNamedElement {
/**
* Returns the package (namespace) of the element.
* @return package
*/
String getPackage();
/**
* Creates a default import for the packaged element.
* @return import
*/
default String getImport() {
return getPackage() + "." + getCapitalizedName();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy