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.
 * 
 * @deprecated will move in ver 6
 */
@Deprecated
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 - 2025 Weber Informatics LLC | Privacy Policy