Thanks!  I haven't looked at the code, but it sounds exactly like what
I was hoping for.  I apologize for not realizing this code had been
there the whole time (which clearly invalidated my "dicuss it first"
complaint).

-Stephen

On 6/23/06, James M Snell <[EMAIL PROTECTED]> wrote:
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
>



--
Stephen Duncan Jr
www.stephenduncanjr.com

Reply via email to