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

arez.spy.ElementInfo Maven / Gradle / Ivy

There is a newer version: 0.213
Show newest version
package arez.spy;

import javax.annotation.Nonnull;

/**
 * A representation of an element exposed to spy framework.
 */
public interface ElementInfo
{
  /**
   * Return the unique name of the element.
   *
   * @return the name of the element.
   */
  @Nonnull
  String getName();

  /**
   * Return true if dispose() has been called on object.
   *
   * @return true if dispose has been called.
   */
  boolean isDisposed();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy