There is a class Functions.

He has static methods.

You need to create an Html class with a copy of the Functions class methods.

class Html extends Functions { } 

Is there any way to specify exactly which methods the Html class should inherit?

In the Html class, all methods of the Functions class are not required.

    1 answer 1

    You need to create an Html class with a copy of the Functions class methods.

    You do it in line

     class Html extends Functions 

    Is there any way to specify exactly which methods the Html class should inherit?

    No, all public and public protected methods are inherited.


    In the Html class, all methods of the Functions class are not required.

    So you have somewhere a mistake in the logic of building a hierarchy.