org.scijava
Interface BasicDetails

All Known Subinterfaces:
UIDetails
All Known Implementing Classes:
AbstractUIDetails, PluginInfo

public interface BasicDetails

An interface defining the basic characteristics of name, label and description.

Author:
Curtis Rueden

Method Summary
 String getDescription()
          Gets a string describing the object.
 String getLabel()
          Gets the name to appear in a UI, if applicable.
 String getName()
          Gets the unique name of the object.
 void setDescription(String description)
          Sets a string describing the object.
 void setLabel(String label)
          Sets the name to appear in a UI, if applicable.
 void setName(String name)
          Sets the unique name of the object.
 

Method Detail

getName

String getName()
Gets the unique name of the object.


getLabel

String getLabel()
Gets the name to appear in a UI, if applicable.


getDescription

String getDescription()
Gets a string describing the object.


setName

void setName(String name)
Sets the unique name of the object.


setLabel

void setLabel(String label)
Sets the name to appear in a UI, if applicable.


setDescription

void setDescription(String description)
Sets a string describing the object.



Copyright © 2009–2014 SciJava. All rights reserved.