We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d78ed33 commit 432cd23Copy full SHA for 432cd23
src/main/java/org/scijava/BasicDetails.java
@@ -37,10 +37,7 @@
37
*
38
* @author Curtis Rueden
39
*/
40
-public interface BasicDetails {
41
-
42
- /** Gets the unique name of the object. */
43
- String getName();
+public interface BasicDetails extends Named {
44
45
/** Gets the name to appear in a UI, if applicable. */
46
String getLabel();
@@ -54,9 +51,6 @@ public interface BasicDetails {
54
51
/** Gets the value of the given key, or null if undefined. */
55
52
public String get(String key);
56
53
57
- /** Sets the unique name of the object. */
58
- void setName(String name);
59
60
/** Sets the name to appear in a UI, if applicable. */
61
void setLabel(String label);
62
0 commit comments