I wanted to create my own StringBuffer which has 2-3 more methods added to the java.lang.StringBuffer. Since the original class is final I cannot extend that class.
Now, If I copy paste the class into my own class, then it says 'AbstractStringBuilder is not visible' error.
How to extend this class in my own namespace (say com.util).