package gov.nasa.gsfc.spdf.cdfj;
/**
 *  CDF Attribute specification
 */
public interface Attribute {

    /**
     *
     * @return
     */
    public String getName();

    /**
     *
     * @return
     */
    public boolean isGlobal();
}
