Skip to content

Commit

Permalink
Merge pull request #209 from ZenUml/freemium
Browse files Browse the repository at this point in the history
Freemium
  • Loading branch information
MrCoder authored Oct 27, 2022
2 parents 203d432 + 7abed8f commit bbef469
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/com/zenuml/dsl/ZenDsl.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,17 @@

public class ZenDsl {
private static final Logger LOG = Logger.getInstance(ZenDsl.class);
public static final String LICENSE_IS_NOT_VALID = "License.isNotValid";
public static final String LICENSE_IS_NOT_VALID = "title Your ZenUML Plugin is NOT licensed\n" +
"ZenUML DslGenerator Parser Renderer\n" +
"// Your ZenUML plugin is **NOT** licensed. ZenUML Plugin is a freemium\n" +
"// application. <br>\n" +
"// You can use it for free. See [here](https://github.com/ZenUml/jetbrains-zenuml/blob/master/Freemium.md) for more details. <br>\n" +
"// This diagram shows you how ZenUML JetBrains Plugin works.\n" +
"ZenUML.render() {\n" +
" dsl = DslGenerator.getDsl(JavaCode)\n" +
" abstractSyntaxTree = Parser.parse(dsl)\n" +
" Renderer.render(abstractSyntaxTree)\n" +
"}\n";

private StringBuffer dsl = new StringBuffer();
private int level = 0;
Expand Down

0 comments on commit bbef469

Please sign in to comment.