[Google Wave APIs] Re: Getting blipID from event BLIP_DELETED

2009-12-25 Thread Evgeniy Beschastnov
Yes, you can replace getRemovedBlipId() with this code: @Override public String getRemovedBlipId() { //return getProperty("removedBlipId"); return eventData.getProperties().get("blipId").toString(); } On 26 ноя, 17:45, Peter Clijsters wrote: > Thanks, I might just do that.. > >

[Google Wave APIs] Re: Getting blipID from event BLIP_DELETED

2009-11-26 Thread Peter Clijsters
Thanks, I might just do that.. Peter. On Nov 26, 11:01 am, dLux wrote: > Hi, > > What you can do is to download the client API source and fix it for > yourself, this is what I did for Emaily. > > Balázs > > On Nov 25, 10:39 am, "Austin Chau (Google employee)" > > wrote: > > There is a bug in th

[Google Wave APIs] Re: Getting blipID from event BLIP_DELETED

2009-11-26 Thread dLux
Hi, What you can do is to download the client API source and fix it for yourself, this is what I did for Emaily. Balázs On Nov 25, 10:39 am, "Austin Chau (Google employee)" wrote: > There is a bug in that method that is not using the correct property name. >  An issue has been filed and it shou

Re: [Google Wave APIs] Re: Getting blipID from event BLIP_DELETED

2009-11-25 Thread Austin Chau (Google employee)
There is a bug in that method that is not using the correct property name. An issue has been filed and it should be fixed with the next Java client library release - http://code.google.com/p/google-wave-resources/issues/detail?id=484

[Google Wave APIs] Re: Getting blipID from event BLIP_DELETED

2009-11-25 Thread Peter Clijsters
Well.., again a reply to myself. After some more testing, this event.getRemovedBlipId() method does not seem to work so well after all. Most of the times, it does not return the removed BlipId and instead just returns null. Any ideas? Thanks, Peter On Nov 19, 9:23 am, Peter Clijsters wrote:

[Google Wave APIs] Re: Getting blipID from event BLIP_DELETED

2009-11-19 Thread Peter Clijsters
Reply to myself.. Overlooked the event.getRemovedBlipId() method. Workes perfectly now. On Nov 18, 11:16 am, Peter Clijsters wrote: > Hi guys, > > Does anybody know what's the best way to get the blipID from a blip > that is deleted (so, when the event BLIP_DELETED gets triggered)? I've > notic