diff --git a/README.md b/README.md index 6505c29..bccbdf4 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Robok-Amix +# Amix A language to create layout @@ -8,7 +8,7 @@ Write in .amx (Amix) and convert to Android Views (XML). ## Add to project -[![JitPack Release](https://jitpack.io/v/Robok-Engine/Robok-Amix.svg)](https://jitpack.io/#Robok-Engine/Robok-Amix) +[![JitPack Release](https://jitpack.io/v/AmixLang/Amix.svg)](https://jitpack.io/#AmixLang/Amix) ```kotlin allprojects { @@ -17,7 +17,7 @@ allprojects { } } -implementation("com.github.Robok-Engine:Robok-Amix:") +implementation("com.github.AmixLang:Amix:") ``` ## Syntax diff --git a/assets/robok-amix-antlr4/grammar/Amix.g4 b/assets/amix-antlr4/grammar/Amix.g4 similarity index 100% rename from assets/robok-amix-antlr4/grammar/Amix.g4 rename to assets/amix-antlr4/grammar/Amix.g4 diff --git a/assets/robok-amix-antlr4/interp/Amix.interp b/assets/amix-antlr4/interp/Amix.interp similarity index 100% rename from assets/robok-amix-antlr4/interp/Amix.interp rename to assets/amix-antlr4/interp/Amix.interp diff --git a/assets/robok-amix-antlr4/interp/AmixLexer.interp b/assets/amix-antlr4/interp/AmixLexer.interp similarity index 100% rename from assets/robok-amix-antlr4/interp/AmixLexer.interp rename to assets/amix-antlr4/interp/AmixLexer.interp diff --git a/assets/robok-amix-antlr4/tokens/Amix.tokens b/assets/amix-antlr4/tokens/Amix.tokens similarity index 100% rename from assets/robok-amix-antlr4/tokens/Amix.tokens rename to assets/amix-antlr4/tokens/Amix.tokens diff --git a/assets/robok-amix-antlr4/tokens/AmixLexer.tokens b/assets/amix-antlr4/tokens/AmixLexer.tokens similarity index 100% rename from assets/robok-amix-antlr4/tokens/AmixLexer.tokens rename to assets/amix-antlr4/tokens/AmixLexer.tokens diff --git a/build.gradle.kts b/build.gradle.kts index 2a929a0..429927e 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,18 +1,18 @@ /* - * This file is part of Robok © 2024. + * This file is part of Amix © 2024. * - * Robok is free software: you can redistribute it and/or modify + * Amix is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * - * Robok is distributed in the hope that it will be useful, + * Amix is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with Robok. If not, see . + * along with Amix. If not, see . */ import org.jetbrains.kotlin.gradle.dsl.JvmTarget @@ -24,7 +24,7 @@ plugins { `java-library` } -group = "org.robok" +group = "org.amix" version = libs.versions.lib.version.get() java { @@ -42,7 +42,7 @@ afterEvaluate { publishing { publications { register("mavenRelease", MavenPublication::class) { - groupId = "org.robok" + groupId = "org.amix" artifactId = "amix" version = libs.versions.lib.version.get() from(components["java"]) diff --git a/settings.gradle.kts b/settings.gradle.kts index fdd6fec..4b472c4 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -13,4 +13,4 @@ dependencyResolutionManagement { } } -rootProject.name = "Robok-Amix" \ No newline at end of file +rootProject.name = "Amix" \ No newline at end of file diff --git a/src/main/java/org/robok/amix/Amix.kt b/src/main/java/org/amix/Amix.kt similarity index 84% rename from src/main/java/org/robok/amix/Amix.kt rename to src/main/java/org/amix/Amix.kt index af37608..942b57d 100644 --- a/src/main/java/org/robok/amix/Amix.kt +++ b/src/main/java/org/amix/Amix.kt @@ -1,25 +1,25 @@ -package org.robok.amix +package org.amix /* - * This file is part of Robok © 2024. + * This file is part of Amix © 2025. * - * Robok is free software: you can redistribute it and/or modify + * Amix is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * - * Robok is distributed in the hope that it will be useful, + * Amix is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with Robok. If not, see . + * along with Amix. If not, see . */ -import org.robok.amix.compiler.AmixCompiler -import org.robok.amix.config.Config -import org.robok.amix.xml.AmixXmlGenerator +import org.amix.compiler.AmixCompiler +import org.amix.config.Config +import org.amix.xml.AmixXmlGenerator class Amix { diff --git a/src/main/java/org/robok/amix/annotation/Component.kt b/src/main/java/org/amix/annotation/Component.kt similarity index 66% rename from src/main/java/org/robok/amix/annotation/Component.kt rename to src/main/java/org/amix/annotation/Component.kt index 0d83a55..3dff5fe 100644 --- a/src/main/java/org/robok/amix/annotation/Component.kt +++ b/src/main/java/org/amix/annotation/Component.kt @@ -1,20 +1,20 @@ -package org.robok.amix.annotation +package org.amix.annotation /* - * This file is part of Robok © 2024. + * This file is part of Amix © 2024. * - * Robok is free software: you can redistribute it and/or modify + * Amix is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * - * Robok is distributed in the hope that it will be useful, + * Amix is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with Robok. If not, see . + * along with Amix. If not, see . */ @Retention(AnnotationRetention.SOURCE) annotation class Component(val name: String) diff --git a/src/main/java/org/robok/amix/compiler/AmixCompiler.kt b/src/main/java/org/amix/compiler/AmixCompiler.kt similarity index 76% rename from src/main/java/org/robok/amix/compiler/AmixCompiler.kt rename to src/main/java/org/amix/compiler/AmixCompiler.kt index 550cc18..fc1bdc8 100644 --- a/src/main/java/org/robok/amix/compiler/AmixCompiler.kt +++ b/src/main/java/org/amix/compiler/AmixCompiler.kt @@ -1,30 +1,30 @@ -package org.robok.amix.compiler +package org.amix.compiler /* - * This file is part of Robok © 2024. + * This file is part of Amix © 2024. * - * Robok is free software: you can redistribute it and/or modify + * Amix is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * - * Robok is distributed in the hope that it will be useful, + * Amix is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with Robok. If not, see . + * along with Amix. If not, see . */ import org.antlr.v4.runtime.CharStreams import org.antlr.v4.runtime.CommonTokenStream import org.antlr.v4.runtime.atn.PredictionMode import org.antlr.v4.runtime.tree.ParseTreeWalker -import org.robok.amix.compiler.listener.AmixParserListener -import org.robok.amix.internal.antlr4.AmixLexer -import org.robok.amix.internal.antlr4.AmixParser -import org.robok.amix.xml.AmixXmlGenerator +import org.amix.compiler.listener.AmixParserListener +import org.amix.internal.antlr4.AmixLexer +import org.amix.internal.antlr4.AmixParser +import org.amix.xml.AmixXmlGenerator /* * Class that uses ANTLR4 to compile the Code and use { @link AmixParserListener }. diff --git a/src/main/java/org/robok/amix/compiler/AmixNullCodeException.kt b/src/main/java/org/amix/compiler/AmixNullCodeException.kt similarity index 66% rename from src/main/java/org/robok/amix/compiler/AmixNullCodeException.kt rename to src/main/java/org/amix/compiler/AmixNullCodeException.kt index 2d3e64e..d18ae77 100644 --- a/src/main/java/org/robok/amix/compiler/AmixNullCodeException.kt +++ b/src/main/java/org/amix/compiler/AmixNullCodeException.kt @@ -1,20 +1,20 @@ -package org.robok.amix.compiler +package org.amix.compiler /* - * This file is part of Robok © 2024. + * This file is part of Amix © 2024. * - * Robok is free software: you can redistribute it and/or modify + * Amix is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * - * Robok is distributed in the hope that it will be useful, + * Amix is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with Robok. If not, see . + * along with Amix. If not, see . */ class AmixNullCodeException() : Exception("Amix Code cannot be null.") diff --git a/src/main/java/org/robok/amix/compiler/listener/AmixParserListener.kt b/src/main/java/org/amix/compiler/listener/AmixParserListener.kt similarity index 79% rename from src/main/java/org/robok/amix/compiler/listener/AmixParserListener.kt rename to src/main/java/org/amix/compiler/listener/AmixParserListener.kt index 5b70bd0..8d2f018 100644 --- a/src/main/java/org/robok/amix/compiler/listener/AmixParserListener.kt +++ b/src/main/java/org/amix/compiler/listener/AmixParserListener.kt @@ -1,29 +1,29 @@ -package org.robok.amix.compiler.listener +package org.amix.compiler.listener /* - * This file is part of Robok © 2024. + * This file is part of Amix © 2024. * - * Robok is free software: you can redistribute it and/or modify + * Amix is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * - * Robok is distributed in the hope that it will be useful, + * Amix is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with Robok. If not, see . + * along with Amix. If not, see . */ -import org.robok.amix.internal.AttributeDefaults -import org.robok.amix.internal.antlr4.AmixBaseListener -import org.robok.amix.internal.antlr4.AmixParser.ArgumentContext -import org.robok.amix.internal.antlr4.AmixParser.ArgumentListContext -import org.robok.amix.internal.antlr4.AmixParser.ComponentContext -import org.robok.amix.internal.antlr4.AmixParser.GuiFileContext -import org.robok.amix.xml.AmixXmlGenerator +import org.amix.internal.AttributeDefaults +import org.amix.internal.antlr4.AmixBaseListener +import org.amix.internal.antlr4.AmixParser.ArgumentContext +import org.amix.internal.antlr4.AmixParser.ArgumentListContext +import org.amix.internal.antlr4.AmixParser.ComponentContext +import org.amix.internal.antlr4.AmixParser.GuiFileContext +import org.amix.xml.AmixXmlGenerator class AmixParserListener(private val xmlGenerator: AmixXmlGenerator) : AmixBaseListener() { private var componentName: String = "" diff --git a/src/main/java/org/robok/amix/components/Components.kt b/src/main/java/org/amix/components/Components.kt similarity index 92% rename from src/main/java/org/robok/amix/components/Components.kt rename to src/main/java/org/amix/components/Components.kt index f8db01d..80c12e0 100644 --- a/src/main/java/org/robok/amix/components/Components.kt +++ b/src/main/java/org/amix/components/Components.kt @@ -1,29 +1,29 @@ -package org.robok.amix.components +package org.amix.components /* - * This file is part of Robok © 2024. + * This file is part of Amix © 2024. * - * Robok is free software: you can redistribute it and/or modify + * Amix is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * - * Robok is distributed in the hope that it will be useful, + * Amix is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with Robok. If not, see . + * along with Amix. If not, see . */ -import org.robok.amix.annotation.Component -import org.robok.amix.config.Config -import org.robok.amix.ext.newLine -import org.robok.amix.ext.newLineBroken -import org.robok.amix.internal.AttributeDefaults -import org.robok.amix.internal.Utils.comment -import org.robok.amix.internal.Utils.convertStyleToFileName +import org.amix.annotation.Component +import org.amix.config.Config +import org.amix.ext.newLine +import org.amix.ext.newLineBroken +import org.amix.internal.AttributeDefaults +import org.amix.internal.Utils.comment +import org.amix.internal.Utils.convertStyleToFileName internal class Components( private val useComments: Boolean = false, diff --git a/src/main/java/org/robok/amix/config/Config.kt b/src/main/java/org/amix/config/Config.kt similarity index 70% rename from src/main/java/org/robok/amix/config/Config.kt rename to src/main/java/org/amix/config/Config.kt index 593887c..c95bbaf 100644 --- a/src/main/java/org/robok/amix/config/Config.kt +++ b/src/main/java/org/amix/config/Config.kt @@ -1,20 +1,20 @@ -package org.robok.amix.config +package org.amix.config /* - * This file is part of Robok © 2024. + * This file is part of Amix © 2024. * - * Robok is free software: you can redistribute it and/or modify + * Amix is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * - * Robok is distributed in the hope that it will be useful, + * Amix is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with Robok. If not, see . + * along with Amix. If not, see . */ import java.io.Serializable diff --git a/src/main/java/org/robok/amix/converter/AttributeConverter.kt b/src/main/java/org/amix/converter/AttributeConverter.kt similarity index 88% rename from src/main/java/org/robok/amix/converter/AttributeConverter.kt rename to src/main/java/org/amix/converter/AttributeConverter.kt index 08d5cf8..2c0e6b3 100644 --- a/src/main/java/org/robok/amix/converter/AttributeConverter.kt +++ b/src/main/java/org/amix/converter/AttributeConverter.kt @@ -1,24 +1,24 @@ -package org.robok.amix.converter +package org.amix.converter /* - * This file is part of Robok © 2024. + * This file is part of Amix © 2024. * - * Robok is free software: you can redistribute it and/or modify + * Amix is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * - * Robok is distributed in the hope that it will be useful, + * Amix is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with Robok. If not, see . + * along with Amix. If not, see . */ /* - * This class converts the Robok Amix Attributes Names to Android View Names. + * This class converts the Amix Amix Attributes Names to Android View Names. */ internal object AttributeConverter { diff --git a/src/main/java/org/robok/amix/converter/AttributesAbbreviations.kt b/src/main/java/org/amix/converter/AttributesAbbreviations.kt similarity index 79% rename from src/main/java/org/robok/amix/converter/AttributesAbbreviations.kt rename to src/main/java/org/amix/converter/AttributesAbbreviations.kt index 5156edc..4a7369e 100644 --- a/src/main/java/org/robok/amix/converter/AttributesAbbreviations.kt +++ b/src/main/java/org/amix/converter/AttributesAbbreviations.kt @@ -1,20 +1,20 @@ -package org.robok.amix.converter +package org.amix.converter /* - * This file is part of Robok © 2024. + * This file is part of Amix © 2024. * - * Robok is free software: you can redistribute it and/or modify + * Amix is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * - * Robok is distributed in the hope that it will be useful, + * Amix is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with Robok. If not, see . + * along with Amix. If not, see . */ internal object AttributesAbbreviations { diff --git a/src/main/java/org/robok/amix/ext/MutableListExtension.kt b/src/main/java/org/amix/ext/MutableListExtension.kt similarity index 76% rename from src/main/java/org/robok/amix/ext/MutableListExtension.kt rename to src/main/java/org/amix/ext/MutableListExtension.kt index fa81128..7ca0084 100644 --- a/src/main/java/org/robok/amix/ext/MutableListExtension.kt +++ b/src/main/java/org/amix/ext/MutableListExtension.kt @@ -1,20 +1,20 @@ -package org.robok.amix.ext +package org.amix.ext /* - * This file is part of Robok © 2024. + * This file is part of Amix © 2024. * - * Robok is free software: you can redistribute it and/or modify + * Amix is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * - * Robok is distributed in the hope that it will be useful, + * Amix is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with Robok. If not, see . + * along with Amix. If not, see . */ /* diff --git a/src/main/java/org/robok/amix/internal/AttributeDefaults.kt b/src/main/java/org/amix/internal/AttributeDefaults.kt similarity index 81% rename from src/main/java/org/robok/amix/internal/AttributeDefaults.kt rename to src/main/java/org/amix/internal/AttributeDefaults.kt index 8316b30..4642716 100644 --- a/src/main/java/org/robok/amix/internal/AttributeDefaults.kt +++ b/src/main/java/org/amix/internal/AttributeDefaults.kt @@ -1,20 +1,20 @@ -package org.robok.amix.internal +package org.amix.internal /* - * This file is part of Robok © 2024. + * This file is part of Amix © 2024. * - * Robok is free software: you can redistribute it and/or modify + * Amix is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * - * Robok is distributed in the hope that it will be useful, + * Amix is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with Robok. If not, see . + * along with Amix. If not, see . */ /* diff --git a/src/main/java/org/robok/amix/internal/Utils.kt b/src/main/java/org/amix/internal/Utils.kt similarity index 71% rename from src/main/java/org/robok/amix/internal/Utils.kt rename to src/main/java/org/amix/internal/Utils.kt index 053371f..7db2d75 100644 --- a/src/main/java/org/robok/amix/internal/Utils.kt +++ b/src/main/java/org/amix/internal/Utils.kt @@ -1,20 +1,20 @@ -package org.robok.amix.internal +package org.amix.internal /* - * This file is part of Robok © 2024. + * This file is part of Amix © 2024. * - * Robok is free software: you can redistribute it and/or modify + * Amix is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * - * Robok is distributed in the hope that it will be useful, + * Amix is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with Robok. If not, see . + * along with Amix. If not, see . */ internal object Utils { diff --git a/src/main/java/org/robok/amix/internal/antlr4/AmixBaseListener.java b/src/main/java/org/amix/internal/antlr4/AmixBaseListener.java similarity index 98% rename from src/main/java/org/robok/amix/internal/antlr4/AmixBaseListener.java rename to src/main/java/org/amix/internal/antlr4/AmixBaseListener.java index e27ffb3..4780b40 100644 --- a/src/main/java/org/robok/amix/internal/antlr4/AmixBaseListener.java +++ b/src/main/java/org/amix/internal/antlr4/AmixBaseListener.java @@ -1,4 +1,4 @@ -package org.robok.amix.internal.antlr4; +package org.amix.internal.antlr4; // Generated from Amix.g4 by ANTLR 4.13.2 diff --git a/src/main/java/org/robok/amix/internal/antlr4/AmixLexer.java b/src/main/java/org/amix/internal/antlr4/AmixLexer.java similarity index 99% rename from src/main/java/org/robok/amix/internal/antlr4/AmixLexer.java rename to src/main/java/org/amix/internal/antlr4/AmixLexer.java index 258842d..11c4b69 100644 --- a/src/main/java/org/robok/amix/internal/antlr4/AmixLexer.java +++ b/src/main/java/org/amix/internal/antlr4/AmixLexer.java @@ -1,4 +1,4 @@ -package org.robok.amix.internal.antlr4; +package org.amix.internal.antlr4; // Generated from Amix.g4 by ANTLR 4.13.2 diff --git a/src/main/java/org/robok/amix/internal/antlr4/AmixListener.java b/src/main/java/org/amix/internal/antlr4/AmixListener.java similarity index 97% rename from src/main/java/org/robok/amix/internal/antlr4/AmixListener.java rename to src/main/java/org/amix/internal/antlr4/AmixListener.java index 7673e16..71e53c2 100644 --- a/src/main/java/org/robok/amix/internal/antlr4/AmixListener.java +++ b/src/main/java/org/amix/internal/antlr4/AmixListener.java @@ -1,4 +1,4 @@ -package org.robok.amix.internal.antlr4; +package org.amix.internal.antlr4; // Generated from Amix.g4 by ANTLR 4.13.2 diff --git a/src/main/java/org/robok/amix/internal/antlr4/AmixParser.java b/src/main/java/org/amix/internal/antlr4/AmixParser.java similarity index 99% rename from src/main/java/org/robok/amix/internal/antlr4/AmixParser.java rename to src/main/java/org/amix/internal/antlr4/AmixParser.java index 2d81a75..deec3b7 100644 --- a/src/main/java/org/robok/amix/internal/antlr4/AmixParser.java +++ b/src/main/java/org/amix/internal/antlr4/AmixParser.java @@ -1,4 +1,4 @@ -package org.robok.amix.internal.antlr4; +package org.amix.internal.antlr4; // Generated from Amix.g4 by ANTLR 4.13.2 diff --git a/src/main/java/org/robok/amix/xml/AmixXmlGenerator.kt b/src/main/java/org/amix/xml/AmixXmlGenerator.kt similarity index 92% rename from src/main/java/org/robok/amix/xml/AmixXmlGenerator.kt rename to src/main/java/org/amix/xml/AmixXmlGenerator.kt index 9c8b4d4..fd76024 100644 --- a/src/main/java/org/robok/amix/xml/AmixXmlGenerator.kt +++ b/src/main/java/org/amix/xml/AmixXmlGenerator.kt @@ -1,29 +1,29 @@ -package org.robok.amix.xml +package org.amix.xml /* - * This file is part of Robok © 2024. + * This file is part of Amix © 2024. * - * Robok is free software: you can redistribute it and/or modify + * Amix is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * - * Robok is distributed in the hope that it will be useful, + * Amix is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with Robok. If not, see . + * along with Amix. If not, see . */ import java.lang.reflect.InvocationTargetException -import org.robok.amix.components.Components -import org.robok.amix.config.Config -import org.robok.amix.converter.AttributeConverter -import org.robok.amix.ext.newLine -import org.robok.amix.ext.newLineBroken -import org.robok.amix.internal.Utils.comment +import org.amix.components.Components +import org.amix.config.Config +import org.amix.converter.AttributeConverter +import org.amix.ext.newLine +import org.amix.ext.newLineBroken +import org.amix.internal.Utils.comment /* * Class that generates XML from the received data.