Lukas Eder

Results 916 comments of Lukas Eder

Thanks. I've had a look at this when taking an attempt at implementing #72. Your code will affect the JDK 8 distribution, but what about JDK 9+? How can we...

Thank you very much for your suggestion. That could be useful, indeed in the future. Let's track community interest first, before adding the feature.

I can see the use-case, but the method is already "taken": ``` java public static Match $(String name, String content) ``` Also, I don't see namespaces as first-class API citizens...

Of course this `xmlns()` method would merely be a convenience method for `attr()`: ``` java $("rect").attr("xmlns", "http://www.w3.org/2000/svg"); ```

> but I found that merely setting the xmlns attribute after the element creation doesn't change the namespace Hmm, good point, I hadn't thought of that. Ah, these namespaces are...

> So a new API for attribute could be useful too. Yes, absolutely! > Something I don't understand is where the prefix come from I'm not sure what you mean...?

I see now, but unfortunately, I don't know. At Data Geekery, when we created jOOX, we only operated with namespace-less XML. Namespaces are a rather big pain, so we've tried...

OK, so now we know the constraints. Unfortunately, I'm rather busy with jOOQ right now, so I won't be able to make this a priority for jOOX. I mean, we...

@pmihalcin Well, we don't have any conflicts. It's possible to use XML without namespaces or with single, implied namespaces. XML with mixed namespaces is quite a different beast, and has,...

Hmm, interesting discovery, thanks for sharing. I hadn't looked at these Java 9 improvements yet. I think it's definitely worth mentioning in the `Async` Javadoc, but these improvements are only...