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

cdc.mf.model.MfPackagedItem Maven / Gradle / Ivy

The newest version!
package cdc.mf.model;

/**
 * Interface of elements that can optionally be owned by a {@link MfPackage package}.
 *
 * @author Damien Carbonne
 */
public interface MfPackagedItem extends MfElement {
    /**
     * @return The owning {@link MfPackage package}, possibly {@code null}.
     */
    public default MfPackage getOwningPackage() {
        return getParent() instanceof final MfPackage p ? p : null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy