source: branches/objectmq-1.0/lib/rabbitmq-java-client-javadoc-3.0.1/com/rabbitmq/client/Consumer.html

Last change on this file was 33, checked in by amoreno, 11 years ago

new release version

File size: 17.8 KB
Line 
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2<!--NewPage-->
3<HTML>
4<HEAD>
5<!-- Generated by javadoc (build 1.6.0_18) on Tue Dec 11 11:47:09 GMT 2012 -->
6<TITLE>
7Consumer
8</TITLE>
9
10<META NAME="date" CONTENT="2012-12-11">
11
12<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
13
14<SCRIPT type="text/javascript">
15function windowTitle()
16{
17    if (location.href.indexOf('is-external=true') == -1) {
18        parent.document.title="Consumer";
19    }
20}
21</SCRIPT>
22<NOSCRIPT>
23</NOSCRIPT>
24
25</HEAD>
26
27<BODY BGCOLOR="white" onload="windowTitle();">
28<HR>
29
30
31<!-- ========= START OF TOP NAVBAR ======= -->
32<A NAME="navbar_top"><!-- --></A>
33<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
34<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
35<TR>
36<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
37<A NAME="navbar_top_firstrow"><!-- --></A>
38<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
39  <TR ALIGN="center" VALIGN="top">
40  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
41  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>
42  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD>
43  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
44  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
45  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
46  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
47  </TR>
48</TABLE>
49</TD>
50<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
51</EM>
52</TD>
53</TR>
54
55<TR>
56<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
57&nbsp;<A HREF="../../../com/rabbitmq/client/ConnectionFactory.html" title="class in com.rabbitmq.client"><B>PREV CLASS</B></A>&nbsp;
58&nbsp;<A HREF="../../../com/rabbitmq/client/ConsumerCancelledException.html" title="class in com.rabbitmq.client"><B>NEXT CLASS</B></A></FONT></TD>
59<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
60  <A HREF="../../../index.html?com/rabbitmq/client/Consumer.html" target="_top"><B>FRAMES</B></A>  &nbsp;
61&nbsp;<A HREF="Consumer.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
62&nbsp;<SCRIPT type="text/javascript">
63  <!--
64  if(window==top) {
65    document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
66  }
67  //-->
68</SCRIPT>
69<NOSCRIPT>
70  <A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
71</NOSCRIPT>
72
73
74</FONT></TD>
75</TR>
76<TR>
77<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
78  SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD>
79<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
80DETAIL:&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD>
81</TR>
82</TABLE>
83<A NAME="skip-navbar_top"></A>
84<!-- ========= END OF TOP NAVBAR ========= -->
85
86<HR>
87<!-- ======== START OF CLASS DATA ======== -->
88<H2>
89<FONT SIZE="-1">
90com.rabbitmq.client</FONT>
91<BR>
92Interface Consumer</H2>
93<DL>
94<DT><B>All Known Implementing Classes:</B> <DD><A HREF="../../../com/rabbitmq/client/DefaultConsumer.html" title="class in com.rabbitmq.client">DefaultConsumer</A>, <A HREF="../../../com/rabbitmq/client/QueueingConsumer.html" title="class in com.rabbitmq.client">QueueingConsumer</A></DD>
95</DL>
96<HR>
97<DL>
98<DT><PRE>public interface <B>Consumer</B></DL>
99</PRE>
100
101<P>
102Interface for application callback objects to receive notifications and messages from
103 a queue by subscription.
104 Most implementations will subclass <A HREF="../../../com/rabbitmq/client/DefaultConsumer.html" title="class in com.rabbitmq.client"><CODE>DefaultConsumer</CODE></A>.
105 <p/>
106 The methods of this interface are invoked in a dispatch
107 thread which is separate from the <A HREF="../../../com/rabbitmq/client/Connection.html" title="interface in com.rabbitmq.client"><CODE>Connection</CODE></A>'s thread. This
108 allows <A HREF="../../../com/rabbitmq/client/Consumer.html" title="interface in com.rabbitmq.client"><CODE>Consumer</CODE></A>s to call <A HREF="../../../com/rabbitmq/client/Channel.html" title="interface in com.rabbitmq.client"><CODE>Channel</CODE></A> or <A HREF="../../../com/rabbitmq/client/Connection.html" title="interface in com.rabbitmq.client"><CODE>Connection</CODE></A> methods without causing a deadlock.
109 <p/>
110 The <A HREF="../../../com/rabbitmq/client/Consumer.html" title="interface in com.rabbitmq.client"><CODE>Consumer</CODE></A>s on a particular <A HREF="../../../com/rabbitmq/client/Channel.html" title="interface in com.rabbitmq.client"><CODE>Channel</CODE></A> are invoked serially on one or more
111 dispatch threads. <A HREF="../../../com/rabbitmq/client/Consumer.html" title="interface in com.rabbitmq.client"><CODE>Consumer</CODE></A>s should avoid executing long-running code
112 because this will delay dispatch of messages to other <A HREF="../../../com/rabbitmq/client/Consumer.html" title="interface in com.rabbitmq.client"><CODE>Consumer</CODE></A>s on the same
113 <A HREF="../../../com/rabbitmq/client/Channel.html" title="interface in com.rabbitmq.client"><CODE>Channel</CODE></A>.
114<P>
115
116<P>
117<DL>
118<DT><B>See Also:</B><DD><A HREF="../../../com/rabbitmq/client/Channel.html#basicConsume(java.lang.String, boolean, java.lang.String, boolean, boolean, java.util.Map, com.rabbitmq.client.Consumer)"><CODE>Channel.basicConsume(String, boolean, String, boolean, boolean, java.util.Map, Consumer)</CODE></A>,
119<A HREF="../../../com/rabbitmq/client/Channel.html#basicCancel(java.lang.String)"><CODE>Channel.basicCancel(java.lang.String)</CODE></A></DL>
120<HR>
121
122<P>
123
124<!-- ========== METHOD SUMMARY =========== -->
125
126<A NAME="method_summary"><!-- --></A>
127<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
128<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
129<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
130<B>Method Summary</B></FONT></TH>
131</TR>
132<TR BGCOLOR="white" CLASS="TableRowColor">
133<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
134<CODE>&nbsp;void</CODE></FONT></TD>
135<TD><CODE><B><A HREF="../../../com/rabbitmq/client/Consumer.html#handleCancel(java.lang.String)">handleCancel</A></B>(java.lang.String&nbsp;consumerTag)</CODE>
136
137<BR>
138&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Called when the consumer is cancelled for reasons <i>other than</i> by a call to
139 <A HREF="../../../com/rabbitmq/client/Channel.html#basicCancel(java.lang.String)"><CODE>Channel.basicCancel(java.lang.String)</CODE></A>.</TD>
140</TR>
141<TR BGCOLOR="white" CLASS="TableRowColor">
142<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
143<CODE>&nbsp;void</CODE></FONT></TD>
144<TD><CODE><B><A HREF="../../../com/rabbitmq/client/Consumer.html#handleCancelOk(java.lang.String)">handleCancelOk</A></B>(java.lang.String&nbsp;consumerTag)</CODE>
145
146<BR>
147&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Called when the consumer is cancelled by a call to <A HREF="../../../com/rabbitmq/client/Channel.html#basicCancel(java.lang.String)"><CODE>Channel.basicCancel(java.lang.String)</CODE></A>.</TD>
148</TR>
149<TR BGCOLOR="white" CLASS="TableRowColor">
150<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
151<CODE>&nbsp;void</CODE></FONT></TD>
152<TD><CODE><B><A HREF="../../../com/rabbitmq/client/Consumer.html#handleConsumeOk(java.lang.String)">handleConsumeOk</A></B>(java.lang.String&nbsp;consumerTag)</CODE>
153
154<BR>
155&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Called when the consumer is registered by a call to any of the
156 <A HREF="../../../com/rabbitmq/client/Channel.html#basicConsume(java.lang.String, com.rabbitmq.client.Consumer)"><CODE>Channel.basicConsume(java.lang.String, com.rabbitmq.client.Consumer)</CODE></A> methods.</TD>
157</TR>
158<TR BGCOLOR="white" CLASS="TableRowColor">
159<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
160<CODE>&nbsp;void</CODE></FONT></TD>
161<TD><CODE><B><A HREF="../../../com/rabbitmq/client/Consumer.html#handleDelivery(java.lang.String, com.rabbitmq.client.Envelope, com.rabbitmq.client.AMQP.BasicProperties, byte[])">handleDelivery</A></B>(java.lang.String&nbsp;consumerTag,
162               <A HREF="../../../com/rabbitmq/client/Envelope.html" title="class in com.rabbitmq.client">Envelope</A>&nbsp;envelope,
163               <A HREF="../../../com/rabbitmq/client/AMQP.BasicProperties.html" title="class in com.rabbitmq.client">AMQP.BasicProperties</A>&nbsp;properties,
164               byte[]&nbsp;body)</CODE>
165
166<BR>
167&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Called when a <code><b>basic.deliver</b></code> is received for this consumer.</TD>
168</TR>
169<TR BGCOLOR="white" CLASS="TableRowColor">
170<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
171<CODE>&nbsp;void</CODE></FONT></TD>
172<TD><CODE><B><A HREF="../../../com/rabbitmq/client/Consumer.html#handleRecoverOk(java.lang.String)">handleRecoverOk</A></B>(java.lang.String&nbsp;consumerTag)</CODE>
173
174<BR>
175&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Called when a <code><b>basic.recover-ok</b></code> is received
176 in reply to a <code><b>basic.recover</b></code>.</TD>
177</TR>
178<TR BGCOLOR="white" CLASS="TableRowColor">
179<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
180<CODE>&nbsp;void</CODE></FONT></TD>
181<TD><CODE><B><A HREF="../../../com/rabbitmq/client/Consumer.html#handleShutdownSignal(java.lang.String, com.rabbitmq.client.ShutdownSignalException)">handleShutdownSignal</A></B>(java.lang.String&nbsp;consumerTag,
182                     <A HREF="../../../com/rabbitmq/client/ShutdownSignalException.html" title="class in com.rabbitmq.client">ShutdownSignalException</A>&nbsp;sig)</CODE>
183
184<BR>
185&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Called when either the channel or the underlying connection has been shut down.</TD>
186</TR>
187</TABLE>
188&nbsp;
189<P>
190
191<!-- ============ METHOD DETAIL ========== -->
192
193<A NAME="method_detail"><!-- --></A>
194<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
195<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
196<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
197<B>Method Detail</B></FONT></TH>
198</TR>
199</TABLE>
200
201<A NAME="handleConsumeOk(java.lang.String)"><!-- --></A><H3>
202handleConsumeOk</H3>
203<PRE>
204void <B>handleConsumeOk</B>(java.lang.String&nbsp;consumerTag)</PRE>
205<DL>
206<DD>Called when the consumer is registered by a call to any of the
207 <A HREF="../../../com/rabbitmq/client/Channel.html#basicConsume(java.lang.String, com.rabbitmq.client.Consumer)"><CODE>Channel.basicConsume(java.lang.String, com.rabbitmq.client.Consumer)</CODE></A> methods.
208<P>
209<DD><DL>
210<DT><B>Parameters:</B><DD><CODE>consumerTag</CODE> - the <i>consumer tag</i> associated with the consumer</DL>
211</DD>
212</DL>
213<HR>
214
215<A NAME="handleCancelOk(java.lang.String)"><!-- --></A><H3>
216handleCancelOk</H3>
217<PRE>
218void <B>handleCancelOk</B>(java.lang.String&nbsp;consumerTag)</PRE>
219<DL>
220<DD>Called when the consumer is cancelled by a call to <A HREF="../../../com/rabbitmq/client/Channel.html#basicCancel(java.lang.String)"><CODE>Channel.basicCancel(java.lang.String)</CODE></A>.
221<P>
222<DD><DL>
223<DT><B>Parameters:</B><DD><CODE>consumerTag</CODE> - the <i>consumer tag</i> associated with the consumer</DL>
224</DD>
225</DL>
226<HR>
227
228<A NAME="handleCancel(java.lang.String)"><!-- --></A><H3>
229handleCancel</H3>
230<PRE>
231void <B>handleCancel</B>(java.lang.String&nbsp;consumerTag)
232                  throws java.io.IOException</PRE>
233<DL>
234<DD>Called when the consumer is cancelled for reasons <i>other than</i> by a call to
235 <A HREF="../../../com/rabbitmq/client/Channel.html#basicCancel(java.lang.String)"><CODE>Channel.basicCancel(java.lang.String)</CODE></A>. For example, the queue has been deleted.
236 See <A HREF="../../../com/rabbitmq/client/Consumer.html#handleCancelOk(java.lang.String)"><CODE>handleCancelOk(java.lang.String)</CODE></A> for notification of consumer
237 cancellation due to <A HREF="../../../com/rabbitmq/client/Channel.html#basicCancel(java.lang.String)"><CODE>Channel.basicCancel(java.lang.String)</CODE></A>.
238<P>
239<DD><DL>
240<DT><B>Parameters:</B><DD><CODE>consumerTag</CODE> - the <i>consumer tag</i> associated with the consumer
241<DT><B>Throws:</B>
242<DD><CODE>java.io.IOException</CODE></DL>
243</DD>
244</DL>
245<HR>
246
247<A NAME="handleShutdownSignal(java.lang.String, com.rabbitmq.client.ShutdownSignalException)"><!-- --></A><H3>
248handleShutdownSignal</H3>
249<PRE>
250void <B>handleShutdownSignal</B>(java.lang.String&nbsp;consumerTag,
251                          <A HREF="../../../com/rabbitmq/client/ShutdownSignalException.html" title="class in com.rabbitmq.client">ShutdownSignalException</A>&nbsp;sig)</PRE>
252<DL>
253<DD>Called when either the channel or the underlying connection has been shut down.
254<P>
255<DD><DL>
256<DT><B>Parameters:</B><DD><CODE>consumerTag</CODE> - the <i>consumer tag</i> associated with the consumer<DD><CODE>sig</CODE> - a <A HREF="../../../com/rabbitmq/client/ShutdownSignalException.html" title="class in com.rabbitmq.client"><CODE>ShutdownSignalException</CODE></A> indicating the reason for the shut down</DL>
257</DD>
258</DL>
259<HR>
260
261<A NAME="handleRecoverOk(java.lang.String)"><!-- --></A><H3>
262handleRecoverOk</H3>
263<PRE>
264void <B>handleRecoverOk</B>(java.lang.String&nbsp;consumerTag)</PRE>
265<DL>
266<DD>Called when a <code><b>basic.recover-ok</b></code> is received
267 in reply to a <code><b>basic.recover</b></code>. All messages
268 received before this is invoked that haven't been <i>ack</i>'ed will be
269 re-delivered. All messages received afterwards won't be.
270<P>
271<DD><DL>
272<DT><B>Parameters:</B><DD><CODE>consumerTag</CODE> - the <i>consumer tag</i> associated with the consumer</DL>
273</DD>
274</DL>
275<HR>
276
277<A NAME="handleDelivery(java.lang.String, com.rabbitmq.client.Envelope, com.rabbitmq.client.AMQP.BasicProperties, byte[])"><!-- --></A><H3>
278handleDelivery</H3>
279<PRE>
280void <B>handleDelivery</B>(java.lang.String&nbsp;consumerTag,
281                    <A HREF="../../../com/rabbitmq/client/Envelope.html" title="class in com.rabbitmq.client">Envelope</A>&nbsp;envelope,
282                    <A HREF="../../../com/rabbitmq/client/AMQP.BasicProperties.html" title="class in com.rabbitmq.client">AMQP.BasicProperties</A>&nbsp;properties,
283                    byte[]&nbsp;body)
284                    throws java.io.IOException</PRE>
285<DL>
286<DD>Called when a <code><b>basic.deliver</b></code> is received for this consumer.
287<P>
288<DD><DL>
289<DT><B>Parameters:</B><DD><CODE>consumerTag</CODE> - the <i>consumer tag</i> associated with the consumer<DD><CODE>envelope</CODE> - packaging data for the message<DD><CODE>properties</CODE> - content header data for the message<DD><CODE>body</CODE> - the message body (opaque, client-specific byte array)
290<DT><B>Throws:</B>
291<DD><CODE>java.io.IOException</CODE> - if the consumer encounters an I/O error while processing the message<DT><B>See Also:</B><DD><A HREF="../../../com/rabbitmq/client/Envelope.html" title="class in com.rabbitmq.client"><CODE>Envelope</CODE></A></DL>
292</DD>
293</DL>
294<!-- ========= END OF CLASS DATA ========= -->
295<HR>
296
297
298<!-- ======= START OF BOTTOM NAVBAR ====== -->
299<A NAME="navbar_bottom"><!-- --></A>
300<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
301<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
302<TR>
303<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
304<A NAME="navbar_bottom_firstrow"><!-- --></A>
305<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
306  <TR ALIGN="center" VALIGN="top">
307  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
308  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>
309  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD>
310  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
311  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
312  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
313  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
314  </TR>
315</TABLE>
316</TD>
317<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
318</EM>
319</TD>
320</TR>
321
322<TR>
323<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
324&nbsp;<A HREF="../../../com/rabbitmq/client/ConnectionFactory.html" title="class in com.rabbitmq.client"><B>PREV CLASS</B></A>&nbsp;
325&nbsp;<A HREF="../../../com/rabbitmq/client/ConsumerCancelledException.html" title="class in com.rabbitmq.client"><B>NEXT CLASS</B></A></FONT></TD>
326<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
327  <A HREF="../../../index.html?com/rabbitmq/client/Consumer.html" target="_top"><B>FRAMES</B></A>  &nbsp;
328&nbsp;<A HREF="Consumer.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
329&nbsp;<SCRIPT type="text/javascript">
330  <!--
331  if(window==top) {
332    document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
333  }
334  //-->
335</SCRIPT>
336<NOSCRIPT>
337  <A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
338</NOSCRIPT>
339
340
341</FONT></TD>
342</TR>
343<TR>
344<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
345  SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD>
346<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
347DETAIL:&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD>
348</TR>
349</TABLE>
350<A NAME="skip-navbar_bottom"></A>
351<!-- ======== END OF BOTTOM NAVBAR ======= -->
352
353<HR>
354
355</BODY>
356</HTML>
Note: See TracBrowser for help on using the repository browser.