[Google Wave APIs] Re: how to access sibling of root blip

2009-11-14 Thread Vivek
i could not find the method to access a blip by its id. Can you tell me how to do it in java? -- You received this message because you are subscribed to the Google Groups Google Wave API group. To post to this group, send email to google-wave-...@googlegroups.com. To unsubscribe from this

[Google Wave APIs] how to access sibling of root blip

2009-11-12 Thread Vivek
one suggest me how can i access the already existing blips in a wavelet. -Vivek. -- You received this message because you are subscribed to the Google Groups Google Wave API group. To post to this group, send email to google-wave-...@googlegroups.com. To unsubscribe from this group, send email

[Google Wave APIs] Re: how to access sibling of root blip

2009-11-12 Thread Vivek
I tried it. Its giving java.lang.NullPointerException when im trying to access the children of root blip. -- You received this message because you are subscribed to the Google Groups Google Wave API group. To post to this group, send email to google-wave-...@googlegroups.com. To unsubscribe

[Google Wave APIs] problem with setStyle

2009-11-11 Thread Vivek
I recently started using wave API I wrote a code for editing the blip submitted by any participant. if (e.getType() == EventType.BLIP_SUBMITTED ) { Blip blip = e.getBlip(); blip.getDocument().setStyle(StyleType.BOLD);

[Google Wave APIs] Re: BLIP_SUBMITTED is not triggered in sandbox

2009-11-10 Thread Vivek
I just creadted a robot which responds to any new BLIP added by responding to BLIP_SUBMITTED event. But its not working when I deployed it. Please help me!! my code is if (e.getType() == EventType.BLIP_SUBMITTED ) { Blip blip = e.getBlip();