blob: 299b87b8de58dec3b4ba071edf7e177db21fffaf [file] [log] [blame]
package p1;
public class A {
public static void main(String[] args) {
A a= new A();
B b= new B("Gugguseli");
a.print(b);
}
public void print(B b) {
class StarDecorator1 extends StarDecorator{
public String decorate(String in) {
return "(" + super.decorate(in) + ")";
}
}
System.out.println(
new StarDecorator1().decorate(b.toString())
);
}
}