Ok, so I just checked in the change that moves Feed Thread support out
to an extensions module. Luckily, it's still drop dead easy to use :-)
Entry entry1 = Factory.INSTANCE.newEntry();
entry1.setId("tag:example.org,2006:/original");
...
Entry entry2 = Factory.INSTANCE.newEntry();
entry2.setId("tag:example.org,2006:/response");
ThreadHelper.addInReplyTo(entry2, entry1);
// or
InReplyTo inReplyTo = entry.addExtension(ThreadConstants.IN_REPLY_TO);
inReplyTo.setRef(...);
...
- James
Garrett Rooney wrote:
> On 6/23/06, James M Snell <[EMAIL PROTECTED]> wrote:
>> There are methods on Entry and Factory to support Feed Thread.
>
> If there are methods on Entry and Factory related to threading, how
> would it be possible to separate it out into an extension?
>
> -garrett
>