I am new to java classes.
I have a two problem here.
Problem 1: I want to create a class called "ClassA", and I want it to be the same as class made by Vaadin called "Component". So when I write
ClassA classA = new ClassA();
It is the same as:
Component component = new Component();
How is that possible?
Problem 2: I want to create "ClassA", I want it to be the same as Vaadin class 'Component', but I also want to be able to add own methods to this "ClassA".
I hope you can help.