Skip to content
Snippets Groups Projects
Commit fbac9cd4 authored by Kristof Szabados's avatar Kristof Szabados
Browse files
parent 7e49dd33
No related branches found
No related tags found
No related merge requests found
......@@ -303,4 +303,6 @@ XML encoding and decoding is not yet supported on the Java side.
== JSON
JSON encoding and decoding is not yet supported on the Java side.
JSON encoding and decoding is not yet fully supported on the Java side.
Semantic checks for checking that the JSON attribute is used consistently is available, but code generation and runtime support is still missing.
......@@ -12,6 +12,5 @@ When applicable, the relevant clause of the standard text (<<14-references.adoc#
* Additionally the `@profiler.start`, `@profiler.stop`, `string2ttcn` TITAN extensions are also not yet supported on the Java side.
* The `@profiler.running` TITAN extension is also not supported.
* Concatenating template strings is not yet supported on the Java side.
* Type compatibility is not yet supported on the Java side.footnote:[except record of/set of types for certain element types, see section 4.32.2]
WARNING: The current version of the Java side of the Test Executor is just a prototype version. Please note that there might still be some changes in some of its APIs.
......@@ -55,7 +55,9 @@ The XML Encoder and Decoder is not yet supported on the Java side.
== JSON Encoder and Decoder
The XML Encoder and Decoder is not yet supported on the Java side.
The JSON Encoder and Decoder is not yet fully supported on the Java side.
Semantic checks for checking that the JSON attribute is used consistently is available, but code generation and runtime support is still missing.
== OER Encoder and Decoder
......
......@@ -402,7 +402,7 @@ The following table shows the relation between the direction of the message type
=== Additional Functions and Attributes
Any kind of attributes or member functions may be added to the Test Port. A selectable channel, which you communicate on, is almost always necessary. Names not interfering with the identifiers generated by the Java code generator can be used in the java file (for example, the names containing one underscore character). Avoid using static variables because you may get confused when more than one instances of the Test Port run simultaneously. Any kind of software libraries may be used in the Test Port as well.
Any kind of attributes or member functions may be added to the Test Port. A selectable channel, which you communicate on, is almost always necessary. Names not interfering with the identifiers generated by the Java code generator can be used in the java file (for example, the names containing one underscore character). Avoid using static variables because it can be very confusing when more than one instances of the Test Port run simultaneously. Any kind of software libraries may be used in the Test Port as well.
In addition, the following `protected` attributes of ancestor classes are available:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment