Skip to content

Commit ab59c0e

Browse files
committed
Align DDUI authorship with agreed attribution
1 parent 46f56e7 commit ab59c0e

24 files changed

+30
-13
lines changed

api/src/main/java/org/allaymc/api/ddui/CustomFormScreen.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
/**
1919
* DDUI implementation of the Bedrock custom form screen.
2020
*
21-
* @author Miroshka
2221
* @author xRookieFight
22+
* @author Miroshka
2323
*/
2424
public final class CustomFormScreen extends DataDrivenScreen {
2525

api/src/main/java/org/allaymc/api/ddui/DDUI.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
* Factory entry point for creating DDUI screens and observables in Allay.
55
*
66
* @author Miroshka
7-
* @author xRookieFight
87
*/
98
public final class DDUI {
109

api/src/main/java/org/allaymc/api/ddui/DataDrivenScreen.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
/**
1212
* Base type for all DDUI screens backed by a Bedrock data store payload.
1313
*
14-
* @author Miroshka
1514
* @author xRookieFight
15+
* @author Miroshka
1616
*/
1717
public abstract class DataDrivenScreen extends ObjectProperty<Object> {
1818

api/src/main/java/org/allaymc/api/ddui/Observable.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
*
1010
* @param <T> value type
1111
*
12-
* @author Miroshka
1312
* @author xRookieFight
1413
*/
1514
public final class Observable<T> {

api/src/main/java/org/allaymc/api/ddui/element/ButtonElement.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
/**
1212
* DDUI button element for custom form screens.
1313
*
14+
* @author xRookieFight
1415
* @author Miroshka
1516
*/
1617
public class ButtonElement extends CustomFormElement {

api/src/main/java/org/allaymc/api/ddui/element/CloseButtonElement.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
/**
1111
* DDUI close button element bound to a screen close action.
1212
*
13-
* @author Miroshka
13+
* @author xRookieFight
1414
*/
1515
public final class CloseButtonElement extends Element {
1616

api/src/main/java/org/allaymc/api/ddui/element/DropdownElement.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
* DDUI dropdown element for selecting one item from a list.
1414
*
1515
* @author Miroshka
16+
* @author xRookieFight
1617
*/
1718
public final class DropdownElement extends CustomFormElement {
1819

api/src/main/java/org/allaymc/api/ddui/element/Element.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
* Base DDUI element that exposes common label, visibility and disabled state bindings.
1010
*
1111
* @author Miroshka
12+
* @author xRookieFight
1213
*/
1314
public abstract class Element extends ObjectProperty<Object> {
1415

api/src/main/java/org/allaymc/api/ddui/element/HeaderElement.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
/**
99
* DDUI header element for prominent section titles inside custom forms.
1010
*
11-
* @author Miroshka
11+
* @author xRookieFight
1212
*/
1313
public final class HeaderElement extends CustomFormElement {
1414

api/src/main/java/org/allaymc/api/ddui/element/LabelElement.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
/**
99
* DDUI label element for static or reactive text output.
1010
*
11-
* @author Miroshka
11+
* @author xRookieFight
1212
*/
1313
public final class LabelElement extends CustomFormElement {
1414

0 commit comments

Comments
 (0)