Skip to Content
0
Former Member
May 28, 2007 at 07:25 AM

doOnNodeReady method of AbstractPortalComponent is not calling..

34 Views

Hi All,

I have one custom class FilterKMContent that extend AbstractPortalComponent like..

public class FilterKMContent extends AbstractPortalComponent

{

}

inside it I have one custom method ApplyGatewayKMFilter() that is being called from somewhere outside of this class.

public class FilterKMContent extends AbstractPortalComponent

{

public IResourceList ApplyGatewayKMFilter()

{

}

}

apart from this method have one more framework given method doOnNodeReady()..

public class FilterKMContent extends AbstractPortalComponent

{

public void doOnNodeReady(IPortalComponentRequest arg0, IEvent arg1)

{

System.err.println("Inside doOnNodeReady");

}

public IResourceList ApplyGatewayKMFilter()

{

}

}

but once I call ApplyGatewayKMFilter() from outside.. the doOnNodeReady() method is not calling..and I am not getting SOP written inside.

Can Anybody help me on it, why it is not calling ?

Is there any restriction to call doOnNodeReady() when u call some other method apart from framework standerd methods?

Thanks,

Vikas