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

ucar.nc2.util.NamedObject Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 1998-2018 John Caron and University Corporation for Atmospheric Research/Unidata
 * See LICENSE for license information.
 */
package ucar.nc2.util;

/**
 * An object that has a name and a description.
 * @author caron
 */

public interface NamedObject {

  /** Get the object's name
   * @return object's name
   */
  String getName();

  /** Get the object's description. Use as a tooltip, for example
   * @return object's description
   */
  String getDescription();

  // the object itself
  Object getValue();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy