From f56e918c3c3fc988923e15317c68357fc4315a38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Sun, 21 Jan 2024 14:45:51 +0100 Subject: [PATCH] generatedoc command stub --- .../decompiler/flash/cli/commands/ReplaceAlpha.java | 2 +- .../decompiler/flash/cli/commands/types/DocFormat.java | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 libsrc/ffdec_cli/src/com/jpexs/decompiler/flash/cli/commands/types/DocFormat.java diff --git a/libsrc/ffdec_cli/src/com/jpexs/decompiler/flash/cli/commands/ReplaceAlpha.java b/libsrc/ffdec_cli/src/com/jpexs/decompiler/flash/cli/commands/ReplaceAlpha.java index 21ae4e845..73d9e96bf 100644 --- a/libsrc/ffdec_cli/src/com/jpexs/decompiler/flash/cli/commands/ReplaceAlpha.java +++ b/libsrc/ffdec_cli/src/com/jpexs/decompiler/flash/cli/commands/ReplaceAlpha.java @@ -50,7 +50,7 @@ public class ReplaceAlpha implements Runnable { static class Item { - @Option( + @Option( names = "--character-id", description = "Character id", required = true, diff --git a/libsrc/ffdec_cli/src/com/jpexs/decompiler/flash/cli/commands/types/DocFormat.java b/libsrc/ffdec_cli/src/com/jpexs/decompiler/flash/cli/commands/types/DocFormat.java new file mode 100644 index 000000000..7afe8ac16 --- /dev/null +++ b/libsrc/ffdec_cli/src/com/jpexs/decompiler/flash/cli/commands/types/DocFormat.java @@ -0,0 +1,9 @@ +package com.jpexs.decompiler.flash.cli.commands.types; + +/** + * + * @author JPEXS + */ +public enum DocFormat { + html +}