Skip to content

Commit 1b7ca08

Browse files
committed
Updated license header
1 parent 426a793 commit 1b7ca08

31 files changed

+392
-32
lines changed

src/main/java/me/despical/commandframework/CommandArguments.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Command Framework - Annotation based command framework
3-
* Copyright (C) 2024 Berke Akçen
3+
* Copyright (C) 2025 Berke Akçen
44
*
55
* This program is free software: you can redistribute it and/or modify
66
* it under the terms of the GNU General Public License as published by
@@ -475,4 +475,4 @@ void setParsedFlags(Set<String> parsedFlags) {
475475
public boolean isFlagPresent(final @NotNull String flag) {
476476
return this.parsedFlags.contains(flag);
477477
}
478-
}
478+
}

src/main/java/me/despical/commandframework/CommandFramework.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Command Framework - Annotation based command framework
3-
* Copyright (C) 2024 Berke Akçen
3+
* Copyright (C) 2025 Berke Akçen
44
*
55
* This program is free software: you can redistribute it and/or modify
66
* it under the terms of the GNU General Public License as published by

src/main/java/me/despical/commandframework/CommandHandler.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Command Framework - Annotation based command framework
3+
* Copyright (C) 2025 Berke Akçen
4+
*
5+
* This program is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* This program is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
17+
*/
18+
119
package me.despical.commandframework;
220

321
import me.despical.commandframework.annotations.Flag;

src/main/java/me/despical/commandframework/CommandRegistry.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Command Framework - Annotation based command framework
3+
* Copyright (C) 2025 Berke Akçen
4+
*
5+
* This program is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* This program is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
17+
*/
18+
119
package me.despical.commandframework;
220

321
import me.despical.commandframework.annotations.Command;

src/main/java/me/despical/commandframework/Message.java

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Command Framework - Annotation based command framework
3+
* Copyright (C) 2025 Berke Akçen
4+
*
5+
* This program is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* This program is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
17+
*/
18+
119
package me.despical.commandframework;
220

321
import me.despical.commandframework.annotations.Command;
@@ -85,4 +103,4 @@ private static class MessageHelper {
85103
return true;
86104
};
87105
}
88-
}
106+
}

src/main/java/me/despical/commandframework/ParameterHandler.java

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Command Framework - Annotation based command framework
3+
* Copyright (C) 2025 Berke Akçen
4+
*
5+
* This program is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* This program is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
17+
*/
18+
119
package me.despical.commandframework;
220

321
import com.google.common.primitives.Primitives;
@@ -99,4 +117,4 @@ public Object[] getParameterArray(Method method, CommandArguments commandArgumen
99117

100118
return methodParameters;
101119
}
102-
}
120+
}

src/main/java/me/despical/commandframework/annotations/Command.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Command Framework - Annotation based command framework
3-
* Copyright (C) 2024 Berke Akçen
3+
* Copyright (C) 2025 Berke Akçen
44
*
55
* This program is free software: you can redistribute it and/or modify
66
* it under the terms of the GNU General Public License as published by

src/main/java/me/despical/commandframework/annotations/Completer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Command Framework - Annotation based command framework
3-
* Copyright (C) 2024 Berke Akçen
3+
* Copyright (C) 2025 Berke Akçen
44
*
55
* This program is free software: you can redistribute it and/or modify
66
* it under the terms of the GNU General Public License as published by
@@ -59,4 +59,4 @@
5959
* @return aliases list of the command
6060
*/
6161
String[] aliases() default {};
62-
}
62+
}

src/main/java/me/despical/commandframework/annotations/Confirmation.java

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Command Framework - Annotation based command framework
3+
* Copyright (C) 2025 Berke Akçen
4+
*
5+
* This program is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* This program is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
17+
*/
18+
119
package me.despical.commandframework.annotations;
220

321
import java.lang.annotation.Documented;
@@ -57,4 +75,4 @@
5775
* @return false if console overrides confirmations, otherwise true
5876
*/
5977
boolean overrideConsole() default false;
60-
}
78+
}

src/main/java/me/despical/commandframework/annotations/Cooldown.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Command Framework - Annotation based command framework
3-
* Copyright (C) 2024 Berke Akçen
3+
* Copyright (C) 2025 Berke Akçen
44
*
55
* This program is free software: you can redistribute it and/or modify
66
* it under the terms of the GNU General Public License as published by
@@ -66,4 +66,4 @@
6666
* @return false if console overrides cooldowns, otherwise true
6767
*/
6868
boolean overrideConsole() default false;
69-
}
69+
}

0 commit comments

Comments
 (0)