I need to extend my own class to a library class (org.jsoup.nodes.Node).
The superclass is abstract and contains abstract methods. My problem is that some of these abstract methods have no modifier, which mean that by default I have no access and I can't override them. When I try to do it I have this message: 
Method does not override method from its superclass
How could I solve this problem?
 
     
     
    