cdc.mf.model.MfModifierItem Maven / Gradle / Ivy
The newest version!
package cdc.mf.model;
/**
* Interface of elements that can be static and final.
*
* @author Damien Carbonne
*/
public interface MfModifierItem extends MfVisibilityItem {
/**
* @return {@code true} if this element is static.
*/
public boolean isStatic();
/**
* @return {@code true} if this element is final.
*/
public boolean isFinal();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy