We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1893459 commit 5d16586Copy full SHA for 5d16586
1 file changed
src/main/java/minevalley/fastcar/api/production/shape/Attachment.java
@@ -1,5 +1,19 @@
1
package minevalley.fastcar.api.production.shape;
2
3
+import org.jetbrains.annotations.Contract;
4
+
5
+import javax.annotation.Nonnull;
6
7
@SuppressWarnings("unused")
8
public interface Attachment extends ShapeProperty {
9
10
+ /**
11
+ * Gets the name of this attachment.
12
+ * This corresponds to the database name of the attachment and is used to identify it.
13
+ *
14
+ * @return The attachment name.
15
+ */
16
+ @Nonnull
17
+ @Contract(pure = true)
18
+ String name();
19
}
0 commit comments