plantuml/src
The-Lum 6c4eaebd8f fix: add `int` and `string` management on `%json_add`
That fixes:
- https://github.com/plantuml/plantuml/issues/328#issuecomment-2071079413

Here is a fix for `int` and `string`, in order to manage:

```puml
%json_add({"age" : 30}, name, 123) '=> {"age":30,"name":123}
```

```puml
%json_add({"age" : 30}, name, Sally) '=> {"age":30,"name":"Sally"}
```

[FYI @philCryoport]
Reagrds,
Th.
2024-04-24 19:52:11 +00:00
..
com/plantuml/api/cheerpj feat: work on chronology 2023-12-11 18:34:23 +01:00
doc-files Version 7988 2013-12-10 20:36:50 +01:00
gen docs: add `package-info.java` for `gen.annotation` (smetana) 2023-11-15 20:35:20 +00:00
h docs: add `package-info.java` and `readme.md` 2023-11-16 11:08:55 +00:00
jcckit docs: add `package-info.java` and `readme.md` 2023-11-16 11:08:55 +00:00
net fix: add `int` and `string` management on `%json_add` 2024-04-24 19:52:11 +00:00
org/stathissideris/ascii2image docs: add `package-info.java` and `readme.md` 2023-11-17 10:31:18 +00:00
smetana/core docs: add `package-info.java` and `readme.md` 2023-11-16 11:08:55 +00:00
sprites/archimate version 1.2020.0 2020-01-12 23:13:17 +01:00
zext/plantuml/com fix: fix some links to `zext` instead of `ext`. 2023-11-19 15:10:09 +00:00
README.md Fix typos in src/README.md 2022-04-06 08:54:11 +02:00
overview.html version 2017.09 2017-04-05 19:37:42 +02:00

README.md

PlantUML : a free UML diagram generator


(C) Copyright 2009-2019, Arnaud Roques Project Info: http://plantuml.com

This file is part of PlantUML.

PlantUML 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.

PlantUML 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 this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

Java is a trademark or registered trademark of Sun Microsystems, Inc. in the United States and other countries.

Original Author: Arnaud Roques


PlantUML is an open-source component used to draw UML diagrams from their textual description.

Overview

This documentation will not describe the PlantUML language description. Please refer to PlantUML site for that.

Here, some information about how PlantUML is implemented will be provided to help the integration of PlantUML with other programs.

Unfortunately, here, we have to raise a warning:

While PlantUML language description remains stable over version and follow ascending compatibility, the implementation of PlantUML changes very often over time.

So if you use classes described in this documentation, it's very likely that you will have an issue someday, because those class may change without any notice. They could even be deleted.

It used to happen more often than you think over years, because we try to constantly improve the general design of PlantUML, and this implies a continuous refactoring.

The only exception is the net.sourceforge.plantuml package, that we will keep as stable as possible over time.