File tree Expand file tree Collapse file tree 2 files changed +4
-7
lines changed
src/main/java/eu/europa/ted/efx Expand file tree Collapse file tree 2 files changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -51,8 +51,7 @@ public interface MarkupGenerator {
5151 * Given a body (main content) and a set of fragments, this method returns the full content of the
5252 * target template file.
5353 *
54- * @param variables the variables to be included in the template file.
55- * @param functions the functions to be included in the template file.
54+ * @param globals the global variables and functions to be included in the template file.
5655 * @param content the body (main content) of the template.
5756 * @param fragments the fragments to be included in the template file.
5857 * @return the full content of the target template file.
Original file line number Diff line number Diff line change @@ -24,12 +24,10 @@ public abstract class Identifier implements ParsedEntity {
2424 public final Class <? extends EfxDataType > dataType ;
2525
2626 /**
27- * Creates an Identifier with the given name and expressions.
28- * The Identifier's data type is inferred from the reference expression.
27+ * Creates an Identifier with the given name and type.
2928 *
30- * @param name The name of the identifier.
31- * @param declarationExpression The expression that should be used to declare the Identifier at runtime.
32- * @param referenceExpression The expression that should be used to reference the identifier.
29+ * @param name The name of the identifier.
30+ * @param dataType The data type of the identifier.
3331 */
3432 protected Identifier (String name , Class <? extends EfxDataType > dataType ) {
3533 this .name = name ;
You can’t perform that action at this time.
0 commit comments