Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Activity for VGR
Type | On... | Excerpt | Status | Date |
---|---|---|---|---|
Comment | Post #288462 |
I assume this is something you did in Eclipse? I see no mention of Eclipse in either your question or your answer. Merely mentioning “Java” does not imply Eclipse; Eclipse is not an official part of Java at all. Eclipse is merely a tool that makes use of Java. (more) |
— | over 1 year ago |
Comment | Post #281589 |
Your getTableCellRendererComponent takes many arguments, including a column index. Can’t you just use that value to determine which font to use? (By the way, renderers are called *very* frequently. Don’t load the font from an InputStream inside a renderer! Instead, load the font *once* in your ap... (more) |
— | over 1 year ago |
Edit | Post #288237 | Initial revision | — | over 1 year ago |
Answer | — |
A: Is it worth using the Java Platform Module System in application code? If you are planning to share the application with individual users (rather than deploying it to a server), declaring your module dependencies explicitly allows jlink to create a stripped-down Java runtime in the application image (and thus in the user’s installation). Aside from that, using module... (more) |
— | over 1 year ago |