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

org.bitbucket.fermenter.stout.mda.JavaPackagedElement Maven / Gradle / Ivy

Go to download

Contains resources for generating application code that realizes a Spring-based business object and business service architecture

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