For improving footnote rendering (see the design page) I’ve discussed with @tmortagne and @mleduc that it would be very helpful to be able to store attributes of arbitrary type on XDOM Blocks (in particular on MacroMarkerBlocks). This would also be helpful for the compiled XDOM.
The proposal is to duplicate on the Block interface what we have for parameters (getParameters(), getParameter(String), setParameter(String, String), setParameters(Map<String, String>)), just with a different name and Object as value type. These attributes should be ignored by renderers, they are just supposed to be used by transformations/macros internally. An implementation would also be provided in AbstractBlock such that these new attributes would be usable on all blocks.
Now the main question is the name. Some ideas:
internalAttribute
annotation
property
internalProperty
I think my favorite is 4 (internalProperty) but I’m open to other suggestions.
Why not simply attribute? ServletRequest for instance has both attributes (Object) and parameters (String). I’d keep it simple, without any “internal” or “transient” prefix.
Is it a known usage in java libs to have this kind of scheme (parameters for String and attributes for Object)? I have never noticed such thing but maybe I just missed it.
I’m asking because at first sight, with just the name, I think it’s not so obvious that the attributes will contain objects and won’t be rendered.
Now I agree it’s simple and it seems to fit. So I’d be +0 for it.
I mentioned in the call that led to this proposal from my compiler classes at university that I remembered that there was a term for this.
I think I finally found what I was looking for in the attribute grammar wikipedia page, and its attribute.
Just for the record, it is possible to set (string) parameters on CompositeBlock that are fully ignored by all renderers as CompositeBlock doesn’t generate any events (and CompositeBlock itself is ignored, too). Similarly, it is probably easy to add custom blocks similar to CompositeBlock but with custom attributes.
I decided not to implement this proposal as in my use case there were too many problems in particular when cloning blocks that I didn’t find them to be beneficial. Still, there might be other applications where they could be useful in which case this proposal could be revived.