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

org.nakedobjects.metamodel.spec.NamedAndDescribed Maven / Gradle / Ivy

The newest version!
package org.nakedobjects.metamodel.spec;

/**
 * Anything in the metamodel (which also includes peers in the reflector) that has a name and description.
 */
public interface NamedAndDescribed {

    /**
     * Return the name for this member - the field or action. This is based on the name of this member.
     * 
     * @see #getIdentifier()
     */
    String getName();

    /**
     * Returns a description of how the member is used - this complements the help text.
     * 
     * @see #getHelp()
     */
    String getDescription();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy