class Tool
{
private Object obj;
public void setName(Object obj)
{
this.obj = obj;
}
public Object getName()
{
return obj;
}
}
class GenericDemo3
{
public static void main(String[] args)
{
Tool t = new Tool();
t.setName(new work());
work w =(work)t.getName();
}
}