Oh wow... that's embarrassing.. Well that explain's and solves it.
Thanks for keepin up with me!
On Wednesday, May 9, 2018 at 5:14:33 AM UTC-4, Lukas Eder wrote:
>
> Thanks for those examples. I'm confused:
>
> public static abstract class MyBook {
> protected static int id;
> protected static String name;
>
> public static int getId() {
> return id;
> }
> public void setId(int newId) {
> this.id = newId;
> }
>
> public static String getName() {
> return name;
> }
>
> public void setName(String title) {
> this.name = title;
> }
> }
>
> Why are there any static members and methods in that class? That doesn't
> make too much sense. You seem to have omitted this detail in the previous
> emails, but given that you've added these modifiers in your example code, I
> do think there's simply a misunderstanding about how the Java language
> works...
>
--
You received this message because you are subscribed to the Google Groups "jOOQ
User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.