This file is indexed.

/usr/share/doc/libmatthew-java-doc/api/index-all.html is in libmatthew-java-doc 0.7.3-1ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_23) on Thu Jul 28 01:25:41 UTC 2011 -->
<TITLE>
Index
</TITLE>

<META NAME="date" CONTENT="2011-07-28">

<LINK REL ="stylesheet" TYPE="text/css" HREF="./stylesheet.css" TITLE="Style">

<SCRIPT type="text/javascript">
function windowTitle()
{
    if (location.href.indexOf('is-external=true') == -1) {
        parent.document.title="Index";
    }
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>

</HEAD>

<BODY BGCOLOR="white" onload="windowTitle();">
<HR>


<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
  <TR ALIGN="center" VALIGN="top">
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="./overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="./overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="./deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="./help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
  </TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>

<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
&nbsp;PREV&nbsp;
&nbsp;NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
  <A HREF="./index.html?index-all.html" target="_top"><B>FRAMES</B></A>  &nbsp;
&nbsp;<A HREF="index-all.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
&nbsp;<SCRIPT type="text/javascript">
  <!--
  if(window==top) {
    document.writeln('<A HREF="./allclasses-noframe.html"><B>All Classes</B></A>');
  }
  //-->
</SCRIPT>
<NOSCRIPT>
  <A HREF="./allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>


</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->

<A HREF="#_A_">A</A> <A HREF="#_B_">B</A> <A HREF="#_C_">C</A> <A HREF="#_D_">D</A> <A HREF="#_E_">E</A> <A HREF="#_F_">F</A> <A HREF="#_G_">G</A> <A HREF="#_H_">H</A> <A HREF="#_I_">I</A> <A HREF="#_L_">L</A> <A HREF="#_M_">M</A> <A HREF="#_N_">N</A> <A HREF="#_O_">O</A> <A HREF="#_P_">P</A> <A HREF="#_R_">R</A> <A HREF="#_S_">S</A> <A HREF="#_T_">T</A> <A HREF="#_U_">U</A> <A HREF="#_V_">V</A> <A HREF="#_W_">W</A> <HR>
<A NAME="_A_"><!-- --></A><H2>
<B>A</B></H2>
<DL>
<DT><A HREF="./cx/ath/matthew/unix/UnixServerSocket.html#accept()"><B>accept()</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixServerSocket.html" title="class in cx.ath.matthew.unix">UnixServerSocket</A>
<DD>Accepts a connection on the ServerSocket.
<DT><A HREF="./cx/ath/matthew/cgi/HTMLForm.html#addField(cx.ath.matthew.cgi.Field)"><B>addField(Field)</B></A> - 
Method in class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/HTMLForm.html" title="class in cx.ath.matthew.cgi">HTMLForm</A>
<DD>Add a field to be displayed in the form.
<DT><A HREF="./cx/ath/matthew/debug/Debug.html#addFilterCommand(java.lang.Class, cx.ath.matthew.debug.Debug.FilterCommand)"><B>addFilterCommand(Class, Debug.FilterCommand)</B></A> - 
Static method in class cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug">Debug</A>
<DD>Add a filter command for a specific type.
<DT><A HREF="./cx/ath/matthew/io/ExecInputStream.html#available()"><B>available()</B></A> - 
Method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/ExecInputStream.html" title="class in cx.ath.matthew.io">ExecInputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/io/TeeInputStream.html#available()"><B>available()</B></A> - 
Method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/TeeInputStream.html" title="class in cx.ath.matthew.io">TeeInputStream</A>
<DD>&nbsp;
</DL>
<HR>
<A NAME="_B_"><!-- --></A><H2>
<B>B</B></H2>
<DL>
<DT><A HREF="./cx/ath/matthew/unix/UnixServerSocket.html#bind(cx.ath.matthew.unix.UnixSocketAddress)"><B>bind(UnixSocketAddress)</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixServerSocket.html" title="class in cx.ath.matthew.unix">UnixServerSocket</A>
<DD>Binds a server socket to the given address.
<DT><A HREF="./cx/ath/matthew/unix/UnixServerSocket.html#bind(java.lang.String)"><B>bind(String)</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixServerSocket.html" title="class in cx.ath.matthew.unix">UnixServerSocket</A>
<DD>Binds a server socket to the given address.
</DL>
<HR>
<A NAME="_C_"><!-- --></A><H2>
<B>C</B></H2>
<DL>
<DT><A HREF="./cx/ath/matthew/cgi/CGI.html" title="class in cx.ath.matthew.cgi"><B>CGI</B></A> - Class in <A HREF="./cx/ath/matthew/cgi/package-summary.html">cx.ath.matthew.cgi</A><DD>This is the main class you have to extend with your CGI program.<DT><A HREF="./cx/ath/matthew/cgi/CGI.html#CGI()"><B>CGI()</B></A> - 
Constructor for class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/CGI.html" title="class in cx.ath.matthew.cgi">CGI</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/cgi/CGI.html#cgi(java.util.Map, java.util.Map, java.util.Map, java.util.Map, java.lang.String[])"><B>cgi(Map, Map, Map, Map, String[])</B></A> - 
Method in class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/CGI.html" title="class in cx.ath.matthew.cgi">CGI</A>
<DD>Override this method in your CGI program.
<DT><A HREF="./cx/ath/matthew/cgi/CGIErrorHandler.html" title="interface in cx.ath.matthew.cgi"><B>CGIErrorHandler</B></A> - Interface in <A HREF="./cx/ath/matthew/cgi/package-summary.html">cx.ath.matthew.cgi</A><DD>Interface to handle exceptions in the CGI.<DT><A HREF="./cx/ath/matthew/cgi/CGIHeaderSentException.html" title="class in cx.ath.matthew.cgi"><B>CGIHeaderSentException</B></A> - Exception in <A HREF="./cx/ath/matthew/cgi/package-summary.html">cx.ath.matthew.cgi</A><DD>Thrown if the headers have already been sent and CGI.header is called.<DT><A HREF="./cx/ath/matthew/cgi/CGIHeaderSentException.html#CGIHeaderSentException()"><B>CGIHeaderSentException()</B></A> - 
Constructor for exception cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/CGIHeaderSentException.html" title="class in cx.ath.matthew.cgi">CGIHeaderSentException</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/cgi/CGIInvalidContentFormatException.html" title="class in cx.ath.matthew.cgi"><B>CGIInvalidContentFormatException</B></A> - Exception in <A HREF="./cx/ath/matthew/cgi/package-summary.html">cx.ath.matthew.cgi</A><DD>Thrown if both raw and text data are set in the same page.<DT><A HREF="./cx/ath/matthew/cgi/CGIInvalidContentFormatException.html#CGIInvalidContentFormatException()"><B>CGIInvalidContentFormatException()</B></A> - 
Constructor for exception cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/CGIInvalidContentFormatException.html" title="class in cx.ath.matthew.cgi">CGIInvalidContentFormatException</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/cgi/CheckBox.html" title="class in cx.ath.matthew.cgi"><B>CheckBox</B></A> - Class in <A HREF="./cx/ath/matthew/cgi/package-summary.html">cx.ath.matthew.cgi</A><DD>&nbsp;<DT><A HREF="./cx/ath/matthew/cgi/CheckBox.html#CheckBox(java.lang.String, java.lang.String, boolean)"><B>CheckBox(String, String, boolean)</B></A> - 
Constructor for class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/CheckBox.html" title="class in cx.ath.matthew.cgi">CheckBox</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/io/ExecInputStream.html#close()"><B>close()</B></A> - 
Method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/ExecInputStream.html" title="class in cx.ath.matthew.io">ExecInputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/io/ExecOutputStream.html#close()"><B>close()</B></A> - 
Method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/ExecOutputStream.html" title="class in cx.ath.matthew.io">ExecOutputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/io/InOutCopier.html#close()"><B>close()</B></A> - 
Method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/InOutCopier.html" title="class in cx.ath.matthew.io">InOutCopier</A>
<DD>Force close the stream without waiting for EOF on the source
<DT><A HREF="./cx/ath/matthew/io/TeeInputStream.html#close()"><B>close()</B></A> - 
Method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/TeeInputStream.html" title="class in cx.ath.matthew.io">TeeInputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/io/TeeOutputStream.html#close()"><B>close()</B></A> - 
Method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/TeeOutputStream.html" title="class in cx.ath.matthew.io">TeeOutputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/unix/UnixServerSocket.html#close()"><B>close()</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixServerSocket.html" title="class in cx.ath.matthew.unix">UnixServerSocket</A>
<DD>Closes the ServerSocket.
<DT><A HREF="./cx/ath/matthew/unix/UnixSocket.html#close()"><B>close()</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixSocket.html" title="class in cx.ath.matthew.unix">UnixSocket</A>
<DD>Closes the connection.
<DT><A HREF="./cx/ath/matthew/unix/USInputStream.html#close()"><B>close()</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/USInputStream.html" title="class in cx.ath.matthew.unix">USInputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/unix/USOutputStream.html#close()"><B>close()</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/USOutputStream.html" title="class in cx.ath.matthew.unix">USOutputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/unix/UnixSocket.html#connect(cx.ath.matthew.unix.UnixSocketAddress)"><B>connect(UnixSocketAddress)</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixSocket.html" title="class in cx.ath.matthew.unix">UnixSocket</A>
<DD>Connect the socket to this address.
<DT><A HREF="./cx/ath/matthew/unix/UnixSocket.html#connect(java.lang.String)"><B>connect(String)</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixSocket.html" title="class in cx.ath.matthew.unix">UnixSocket</A>
<DD>Connect the socket to this address.
<DT><A HREF="./cx/ath/matthew/debug/Debug.html#CRIT"><B>CRIT</B></A> - 
Static variable in class cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug">Debug</A>
<DD>Highest priority messages
<DT><A HREF="./cx/ath/matthew/cgi/package-summary.html"><B>cx.ath.matthew.cgi</B></A> - package cx.ath.matthew.cgi<DD>&nbsp;<DT><A HREF="./cx/ath/matthew/debug/package-summary.html"><B>cx.ath.matthew.debug</B></A> - package cx.ath.matthew.debug<DD>&nbsp;<DT><A HREF="./cx/ath/matthew/io/package-summary.html"><B>cx.ath.matthew.io</B></A> - package cx.ath.matthew.io<DD>&nbsp;<DT><A HREF="./cx/ath/matthew/unix/package-summary.html"><B>cx.ath.matthew.unix</B></A> - package cx.ath.matthew.unix<DD>&nbsp;<DT><A HREF="./cx/ath/matthew/utils/package-summary.html"><B>cx.ath.matthew.utils</B></A> - package cx.ath.matthew.utils<DD>&nbsp;</DL>
<HR>
<A NAME="_D_"><!-- --></A><H2>
<B>D</B></H2>
<DL>
<DT><A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug"><B>Debug</B></A> - Class in <A HREF="./cx/ath/matthew/debug/package-summary.html">cx.ath.matthew.debug</A><DD>Add debugging to your program, has support for large projects with multiple
  classes and debug levels per class.<DT><A HREF="./cx/ath/matthew/debug/Debug.html#Debug()"><B>Debug()</B></A> - 
Constructor for class cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug">Debug</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/debug/Debug.html#DEBUG"><B>DEBUG</B></A> - 
Static variable in class cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug">Debug</A>
<DD>Debug messages
<DT><A HREF="./cx/ath/matthew/debug/Debug.html#debug"><B>debug</B></A> - 
Static variable in class cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug">Debug</A>
<DD>Set this to false to disable compilation of Debug statements
<DT><A HREF="./cx/ath/matthew/debug/Debug.FilterCommand.html" title="interface in cx.ath.matthew.debug"><B>Debug.FilterCommand</B></A> - Interface in <A HREF="./cx/ath/matthew/debug/package-summary.html">cx.ath.matthew.debug</A><DD>This interface can be used to provide custom printing filters
     for certain classes.<DT><A HREF="./cx/ath/matthew/debug/Debug.html#debugging(java.lang.Class, int)"><B>debugging(Class, int)</B></A> - 
Static method in class cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug">Debug</A>
<DD><B>Deprecated.</B>&nbsp;<I>In Java 1.5 calling class is automatically identified, no need to pass it in.</I>
<DT><A HREF="./cx/ath/matthew/debug/Debug.html#debugging(java.lang.String, int)"><B>debugging(String, int)</B></A> - 
Static method in class cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug">Debug</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/debug/Debug.html#debugout"><B>debugout</B></A> - 
Static variable in class cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug">Debug</A>
<DD>The current output stream (defaults to System.err)
<DT><A HREF="./cx/ath/matthew/cgi/DefaultErrorHandler.html" title="class in cx.ath.matthew.cgi"><B>DefaultErrorHandler</B></A> - Class in <A HREF="./cx/ath/matthew/cgi/package-summary.html">cx.ath.matthew.cgi</A><DD>Interface to handle exceptions in the CGI.<DT><A HREF="./cx/ath/matthew/cgi/DefaultErrorHandler.html#DefaultErrorHandler()"><B>DefaultErrorHandler()</B></A> - 
Constructor for class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/DefaultErrorHandler.html" title="class in cx.ath.matthew.cgi">DefaultErrorHandler</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/cgi/HTMLForm.html#display(cx.ath.matthew.cgi.CGI)"><B>display(CGI)</B></A> - 
Method in class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/HTMLForm.html" title="class in cx.ath.matthew.cgi">HTMLForm</A>
<DD>Shows the form.
<DT><A HREF="./cx/ath/matthew/cgi/DisplayField.html" title="class in cx.ath.matthew.cgi"><B>DisplayField</B></A> - Class in <A HREF="./cx/ath/matthew/cgi/package-summary.html">cx.ath.matthew.cgi</A><DD>&nbsp;<DT><A HREF="./cx/ath/matthew/cgi/DisplayField.html#DisplayField(java.lang.String, java.lang.String)"><B>DisplayField(String, String)</B></A> - 
Constructor for class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/DisplayField.html" title="class in cx.ath.matthew.cgi">DisplayField</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/cgi/CGI.html#doCGI(java.lang.String[])"><B>doCGI(String[])</B></A> - 
Method in class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/CGI.html" title="class in cx.ath.matthew.cgi">CGI</A>
<DD>This method sets up all the CGI variables and calls the cgi() method, then writes out the page data.
<DT><A HREF="./cx/ath/matthew/io/DOMPrinter.html" title="class in cx.ath.matthew.io"><B>DOMPrinter</B></A> - Class in <A HREF="./cx/ath/matthew/io/package-summary.html">cx.ath.matthew.io</A><DD>Print a DOM tree to the given OutputStream<DT><A HREF="./cx/ath/matthew/io/DOMPrinter.html#DOMPrinter()"><B>DOMPrinter()</B></A> - 
Constructor for class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/DOMPrinter.html" title="class in cx.ath.matthew.io">DOMPrinter</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/cgi/DropDown.html" title="class in cx.ath.matthew.cgi"><B>DropDown</B></A> - Class in <A HREF="./cx/ath/matthew/cgi/package-summary.html">cx.ath.matthew.cgi</A><DD>&nbsp;<DT><A HREF="./cx/ath/matthew/cgi/DropDown.html#DropDown(java.lang.String, java.lang.String, java.lang.Object[], java.lang.Object, boolean)"><B>DropDown(String, String, Object[], Object, boolean)</B></A> - 
Constructor for class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/DropDown.html" title="class in cx.ath.matthew.cgi">DropDown</A>
<DD>Create a new DropDown list.
<DT><A HREF="./cx/ath/matthew/cgi/DropDown.html#DropDown(java.lang.String, java.lang.String, java.lang.Object[], int, boolean)"><B>DropDown(String, String, Object[], int, boolean)</B></A> - 
Constructor for class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/DropDown.html" title="class in cx.ath.matthew.cgi">DropDown</A>
<DD>Create a new DropDown list.
<DT><A HREF="./cx/ath/matthew/cgi/DropDown.html#DropDown(java.lang.String, java.lang.String, java.util.List, java.lang.Object, boolean)"><B>DropDown(String, String, List, Object, boolean)</B></A> - 
Constructor for class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/DropDown.html" title="class in cx.ath.matthew.cgi">DropDown</A>
<DD>Create a new DropDown list.
<DT><A HREF="./cx/ath/matthew/cgi/DropDown.html#DropDown(java.lang.String, java.lang.String, java.util.List, int, boolean)"><B>DropDown(String, String, List, int, boolean)</B></A> - 
Constructor for class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/DropDown.html" title="class in cx.ath.matthew.cgi">DropDown</A>
<DD>Create a new DropDown list.
</DL>
<HR>
<A NAME="_E_"><!-- --></A><H2>
<B>E</B></H2>
<DL>
<DT><A HREF="./cx/ath/matthew/unix/UnixSocketAddress.html#equals(java.lang.Object)"><B>equals(Object)</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixSocketAddress.html" title="class in cx.ath.matthew.unix">UnixSocketAddress</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/debug/Debug.html#ERR"><B>ERR</B></A> - 
Static variable in class cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug">Debug</A>
<DD>Error messages
<DT><A HREF="./cx/ath/matthew/io/ExecInputStream.html" title="class in cx.ath.matthew.io"><B>ExecInputStream</B></A> - Class in <A HREF="./cx/ath/matthew/io/package-summary.html">cx.ath.matthew.io</A><DD>Class to pipe an InputStream through a command using stdin/stdout.<DT><A HREF="./cx/ath/matthew/io/ExecInputStream.html#ExecInputStream(java.io.InputStream, java.lang.Process)"><B>ExecInputStream(InputStream, Process)</B></A> - 
Constructor for class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/ExecInputStream.html" title="class in cx.ath.matthew.io">ExecInputStream</A>
<DD>Create a new ExecInputStream on the given InputStream
 using the process to filter the stream.
<DT><A HREF="./cx/ath/matthew/io/ExecInputStream.html#ExecInputStream(java.io.InputStream, java.lang.String)"><B>ExecInputStream(InputStream, String)</B></A> - 
Constructor for class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/ExecInputStream.html" title="class in cx.ath.matthew.io">ExecInputStream</A>
<DD>Create a new ExecInputStream on the given InputStream
 using the process to filter the stream.
<DT><A HREF="./cx/ath/matthew/io/ExecInputStream.html#ExecInputStream(java.io.InputStream, java.lang.String[])"><B>ExecInputStream(InputStream, String[])</B></A> - 
Constructor for class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/ExecInputStream.html" title="class in cx.ath.matthew.io">ExecInputStream</A>
<DD>Create a new ExecInputStream on the given InputStream
 using the process to filter the stream.
<DT><A HREF="./cx/ath/matthew/io/ExecInputStream.html#ExecInputStream(java.io.InputStream, java.lang.String, java.lang.String[])"><B>ExecInputStream(InputStream, String, String[])</B></A> - 
Constructor for class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/ExecInputStream.html" title="class in cx.ath.matthew.io">ExecInputStream</A>
<DD>Create a new ExecInputStream on the given InputStream
 using the process to filter the stream.
<DT><A HREF="./cx/ath/matthew/io/ExecInputStream.html#ExecInputStream(java.io.InputStream, java.lang.String[], java.lang.String[])"><B>ExecInputStream(InputStream, String[], String[])</B></A> - 
Constructor for class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/ExecInputStream.html" title="class in cx.ath.matthew.io">ExecInputStream</A>
<DD>Create a new ExecInputStream on the given InputStream
 using the process to filter the stream.
<DT><A HREF="./cx/ath/matthew/io/ExecOutputStream.html" title="class in cx.ath.matthew.io"><B>ExecOutputStream</B></A> - Class in <A HREF="./cx/ath/matthew/io/package-summary.html">cx.ath.matthew.io</A><DD>Class to pipe an OutputStream through a command using stdin/stdout.<DT><A HREF="./cx/ath/matthew/io/ExecOutputStream.html#ExecOutputStream(java.io.OutputStream, java.lang.Process)"><B>ExecOutputStream(OutputStream, Process)</B></A> - 
Constructor for class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/ExecOutputStream.html" title="class in cx.ath.matthew.io">ExecOutputStream</A>
<DD>Create a new ExecOutputStream on the given OutputStream
 using the process to filter the stream.
<DT><A HREF="./cx/ath/matthew/io/ExecOutputStream.html#ExecOutputStream(java.io.OutputStream, java.lang.String)"><B>ExecOutputStream(OutputStream, String)</B></A> - 
Constructor for class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/ExecOutputStream.html" title="class in cx.ath.matthew.io">ExecOutputStream</A>
<DD>Create a new ExecOutputStream on the given OutputStream
 using the process to filter the stream.
<DT><A HREF="./cx/ath/matthew/io/ExecOutputStream.html#ExecOutputStream(java.io.OutputStream, java.lang.String[])"><B>ExecOutputStream(OutputStream, String[])</B></A> - 
Constructor for class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/ExecOutputStream.html" title="class in cx.ath.matthew.io">ExecOutputStream</A>
<DD>Create a new ExecOutputStream on the given OutputStream
 using the process to filter the stream.
<DT><A HREF="./cx/ath/matthew/io/ExecOutputStream.html#ExecOutputStream(java.io.OutputStream, java.lang.String, java.lang.String[])"><B>ExecOutputStream(OutputStream, String, String[])</B></A> - 
Constructor for class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/ExecOutputStream.html" title="class in cx.ath.matthew.io">ExecOutputStream</A>
<DD>Create a new ExecOutputStream on the given OutputStream
 using the process to filter the stream.
<DT><A HREF="./cx/ath/matthew/io/ExecOutputStream.html#ExecOutputStream(java.io.OutputStream, java.lang.String[], java.lang.String[])"><B>ExecOutputStream(OutputStream, String[], String[])</B></A> - 
Constructor for class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/ExecOutputStream.html" title="class in cx.ath.matthew.io">ExecOutputStream</A>
<DD>Create a new ExecOutputStream on the given OutputStream
 using the process to filter the stream.
</DL>
<HR>
<A NAME="_F_"><!-- --></A><H2>
<B>F</B></H2>
<DL>
<DT><A HREF="./cx/ath/matthew/cgi/Field.html" title="class in cx.ath.matthew.cgi"><B>Field</B></A> - Class in <A HREF="./cx/ath/matthew/cgi/package-summary.html">cx.ath.matthew.cgi</A><DD>&nbsp;<DT><A HREF="./cx/ath/matthew/cgi/Field.html#Field()"><B>Field()</B></A> - 
Constructor for class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/Field.html" title="class in cx.ath.matthew.cgi">Field</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/debug/Debug.FilterCommand.html#filter(java.io.PrintStream, int, java.lang.String, java.lang.String, java.lang.String, java.lang.String[])"><B>filter(PrintStream, int, String, String, String, String[])</B></A> - 
Method in interface cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.FilterCommand.html" title="interface in cx.ath.matthew.debug">Debug.FilterCommand</A>
<DD>Called to print debug messages with a custom filter.
<DT><A HREF="./cx/ath/matthew/io/ExecInputStream.html#finalize()"><B>finalize()</B></A> - 
Method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/ExecInputStream.html" title="class in cx.ath.matthew.io">ExecInputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/io/ExecOutputStream.html#finalize()"><B>finalize()</B></A> - 
Method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/ExecOutputStream.html" title="class in cx.ath.matthew.io">ExecOutputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/io/TeeInputStream.html#finalize()"><B>finalize()</B></A> - 
Method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/TeeInputStream.html" title="class in cx.ath.matthew.io">TeeInputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/io/TeeOutputStream.html#finalize()"><B>finalize()</B></A> - 
Method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/TeeOutputStream.html" title="class in cx.ath.matthew.io">TeeOutputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/unix/UnixSocket.html#finalize()"><B>finalize()</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixSocket.html" title="class in cx.ath.matthew.unix">UnixSocket</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/cgi/CGI.html#flush()"><B>flush()</B></A> - 
Method in class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/CGI.html" title="class in cx.ath.matthew.cgi">CGI</A>
<DD>Flushes the output.
<DT><A HREF="./cx/ath/matthew/io/ExecInputStream.html#flush()"><B>flush()</B></A> - 
Method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/ExecInputStream.html" title="class in cx.ath.matthew.io">ExecInputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/io/ExecOutputStream.html#flush()"><B>flush()</B></A> - 
Method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/ExecOutputStream.html" title="class in cx.ath.matthew.io">ExecOutputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/io/InOutCopier.html#flush()"><B>flush()</B></A> - 
Method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/InOutCopier.html" title="class in cx.ath.matthew.io">InOutCopier</A>
<DD>Flush the outputstream
<DT><A HREF="./cx/ath/matthew/io/TeeInputStream.html#flush()"><B>flush()</B></A> - 
Method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/TeeInputStream.html" title="class in cx.ath.matthew.io">TeeInputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/io/TeeOutputStream.html#flush()"><B>flush()</B></A> - 
Method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/TeeOutputStream.html" title="class in cx.ath.matthew.io">TeeOutputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/unix/USOutputStream.html#flush()"><B>flush()</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/USOutputStream.html" title="class in cx.ath.matthew.unix">USOutputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/utils/Hexdump.html#format(byte[])"><B>format(byte[])</B></A> - 
Static method in class cx.ath.matthew.utils.<A HREF="./cx/ath/matthew/utils/Hexdump.html" title="class in cx.ath.matthew.utils">Hexdump</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/utils/Hexdump.html#format(byte[], int)"><B>format(byte[], int)</B></A> - 
Static method in class cx.ath.matthew.utils.<A HREF="./cx/ath/matthew/utils/Hexdump.html" title="class in cx.ath.matthew.utils">Hexdump</A>
<DD>&nbsp;
</DL>
<HR>
<A NAME="_G_"><!-- --></A><H2>
<B>G</B></H2>
<DL>
<DT><A HREF="./cx/ath/matthew/unix/UnixServerSocket.html#getAddress()"><B>getAddress()</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixServerSocket.html" title="class in cx.ath.matthew.unix">UnixServerSocket</A>
<DD>Return the address this socket is bound to.
<DT><A HREF="./cx/ath/matthew/unix/UnixSocket.html#getAddress()"><B>getAddress()</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixSocket.html" title="class in cx.ath.matthew.unix">UnixSocket</A>
<DD>Returns the address this socket is connected to.
<DT><A HREF="./cx/ath/matthew/unix/UnixSocket.html#getBlocking()"><B>getBlocking()</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixSocket.html" title="class in cx.ath.matthew.unix">UnixSocket</A>
<DD>Get the blocking mode.
<DT><A HREF="./cx/ath/matthew/unix/UnixSocket.html#getInputStream()"><B>getInputStream()</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixSocket.html" title="class in cx.ath.matthew.unix">UnixSocket</A>
<DD>Returns an InputStream for reading from the socket.
<DT><A HREF="./cx/ath/matthew/cgi/CGI.html#getOutputStream()"><B>getOutputStream()</B></A> - 
Method in class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/CGI.html" title="class in cx.ath.matthew.cgi">CGI</A>
<DD>This will return an OutputStream that you can write data
 directly to.
<DT><A HREF="./cx/ath/matthew/unix/UnixSocket.html#getOutputStream()"><B>getOutputStream()</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixSocket.html" title="class in cx.ath.matthew.unix">UnixSocket</A>
<DD>Returns an OutputStream for writing to the socket.
<DT><A HREF="./cx/ath/matthew/unix/UnixSocket.html#getPassCred()"><B>getPassCred()</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixSocket.html" title="class in cx.ath.matthew.unix">UnixSocket</A>
<DD>Get the credential passing status.
<DT><A HREF="./cx/ath/matthew/unix/UnixSocketAddress.html#getPath()"><B>getPath()</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixSocketAddress.html" title="class in cx.ath.matthew.unix">UnixSocketAddress</A>
<DD>Return the path.
<DT><A HREF="./cx/ath/matthew/unix/UnixSocket.html#getPeerGID()"><B>getPeerGID()</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixSocket.html" title="class in cx.ath.matthew.unix">UnixSocket</A>
<DD>Return the gid of the remote process.
<DT><A HREF="./cx/ath/matthew/unix/UnixSocket.html#getPeerPID()"><B>getPeerPID()</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixSocket.html" title="class in cx.ath.matthew.unix">UnixSocket</A>
<DD>Return the pid of the remote process.
<DT><A HREF="./cx/ath/matthew/unix/UnixSocket.html#getPeerUID()"><B>getPeerUID()</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixSocket.html" title="class in cx.ath.matthew.unix">UnixSocket</A>
<DD>Return the uid of the remote process.
<DT><A HREF="./cx/ath/matthew/unix/USInputStream.html#getSocket()"><B>getSocket()</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/USInputStream.html" title="class in cx.ath.matthew.unix">USInputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/unix/USOutputStream.html#getSocket()"><B>getSocket()</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/USOutputStream.html" title="class in cx.ath.matthew.unix">USOutputStream</A>
<DD>&nbsp;
</DL>
<HR>
<A NAME="_H_"><!-- --></A><H2>
<B>H</B></H2>
<DL>
<DT><A HREF="./cx/ath/matthew/unix/UnixSocketAddress.html#hashCode()"><B>hashCode()</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixSocketAddress.html" title="class in cx.ath.matthew.unix">UnixSocketAddress</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/cgi/CGI.html#header(java.lang.String, java.lang.String)"><B>header(String, String)</B></A> - 
Method in class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/CGI.html" title="class in cx.ath.matthew.cgi">CGI</A>
<DD>Called by CGIs to send a header to the output
<DT><A HREF="./cx/ath/matthew/utils/Hexdump.html#hexchars"><B>hexchars</B></A> - 
Static variable in class cx.ath.matthew.utils.<A HREF="./cx/ath/matthew/utils/Hexdump.html" title="class in cx.ath.matthew.utils">Hexdump</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/utils/Hexdump.html" title="class in cx.ath.matthew.utils"><B>Hexdump</B></A> - Class in <A HREF="./cx/ath/matthew/utils/package-summary.html">cx.ath.matthew.utils</A><DD>&nbsp;<DT><A HREF="./cx/ath/matthew/utils/Hexdump.html#Hexdump()"><B>Hexdump()</B></A> - 
Constructor for class cx.ath.matthew.utils.<A HREF="./cx/ath/matthew/utils/Hexdump.html" title="class in cx.ath.matthew.utils">Hexdump</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/cgi/HiddenField.html" title="class in cx.ath.matthew.cgi"><B>HiddenField</B></A> - Class in <A HREF="./cx/ath/matthew/cgi/package-summary.html">cx.ath.matthew.cgi</A><DD>&nbsp;<DT><A HREF="./cx/ath/matthew/cgi/HiddenField.html#HiddenField(java.lang.String, java.lang.String)"><B>HiddenField(String, String)</B></A> - 
Constructor for class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/HiddenField.html" title="class in cx.ath.matthew.cgi">HiddenField</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/cgi/HTMLForm.html" title="class in cx.ath.matthew.cgi"><B>HTMLForm</B></A> - Class in <A HREF="./cx/ath/matthew/cgi/package-summary.html">cx.ath.matthew.cgi</A><DD>Class to manage drawing HTML forms<DT><A HREF="./cx/ath/matthew/cgi/HTMLForm.html#HTMLForm(java.lang.String)"><B>HTMLForm(String)</B></A> - 
Constructor for class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/HTMLForm.html" title="class in cx.ath.matthew.cgi">HTMLForm</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/cgi/HTMLForm.html#HTMLForm(java.lang.String, java.lang.String)"><B>HTMLForm(String, String)</B></A> - 
Constructor for class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/HTMLForm.html" title="class in cx.ath.matthew.cgi">HTMLForm</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/cgi/HTMLForm.html#HTMLForm(java.lang.String, java.lang.String, java.lang.String)"><B>HTMLForm(String, String, String)</B></A> - 
Constructor for class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/HTMLForm.html" title="class in cx.ath.matthew.cgi">HTMLForm</A>
<DD>&nbsp;
</DL>
<HR>
<A NAME="_I_"><!-- --></A><H2>
<B>I</B></H2>
<DL>
<DT><A HREF="./cx/ath/matthew/debug/Debug.html#INFO"><B>INFO</B></A> - 
Static variable in class cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug">Debug</A>
<DD>Information
<DT><A HREF="./cx/ath/matthew/io/InOutCopier.html" title="class in cx.ath.matthew.io"><B>InOutCopier</B></A> - Class in <A HREF="./cx/ath/matthew/io/package-summary.html">cx.ath.matthew.io</A><DD>Copies from an input stream to an output stream using a Thread.<DT><A HREF="./cx/ath/matthew/io/InOutCopier.html#InOutCopier(java.io.InputStream, java.io.OutputStream)"><B>InOutCopier(InputStream, OutputStream)</B></A> - 
Constructor for class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/InOutCopier.html" title="class in cx.ath.matthew.io">InOutCopier</A>
<DD>Create a copier from an inputstream to an outputstream
<DT><A HREF="./cx/ath/matthew/unix/UnixSocketAddress.html#isAbstract()"><B>isAbstract()</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixSocketAddress.html" title="class in cx.ath.matthew.unix">UnixSocketAddress</A>
<DD>Returns true if this an address for an abstract socket.
<DT><A HREF="./cx/ath/matthew/unix/UnixServerSocket.html#isBound()"><B>isBound()</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixServerSocket.html" title="class in cx.ath.matthew.unix">UnixServerSocket</A>
<DD>Check the status of the socket.
<DT><A HREF="./cx/ath/matthew/unix/UnixServerSocket.html#isClosed()"><B>isClosed()</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixServerSocket.html" title="class in cx.ath.matthew.unix">UnixServerSocket</A>
<DD>Check the status of the socket.
<DT><A HREF="./cx/ath/matthew/unix/UnixSocket.html#isClosed()"><B>isClosed()</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixSocket.html" title="class in cx.ath.matthew.unix">UnixSocket</A>
<DD>Check the socket status.
<DT><A HREF="./cx/ath/matthew/unix/USInputStream.html#isClosed()"><B>isClosed()</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/USInputStream.html" title="class in cx.ath.matthew.unix">USInputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/unix/USOutputStream.html#isClosed()"><B>isClosed()</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/USOutputStream.html" title="class in cx.ath.matthew.unix">USOutputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/unix/UnixSocket.html#isConnected()"><B>isConnected()</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixSocket.html" title="class in cx.ath.matthew.unix">UnixSocket</A>
<DD>Check the socket status.
<DT><A HREF="./cx/ath/matthew/unix/UnixSocket.html#isInputShutdown()"><B>isInputShutdown()</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixSocket.html" title="class in cx.ath.matthew.unix">UnixSocket</A>
<DD>Check the socket status.
<DT><A HREF="./cx/ath/matthew/unix/UnixSocket.html#isOutputShutdown()"><B>isOutputShutdown()</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixSocket.html" title="class in cx.ath.matthew.unix">UnixSocket</A>
<DD>Check the socket status.
</DL>
<HR>
<A NAME="_L_"><!-- --></A><H2>
<B>L</B></H2>
<DL>
<DT><A HREF="./cx/ath/matthew/cgi/Field.html#label"><B>label</B></A> - 
Variable in class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/Field.html" title="class in cx.ath.matthew.cgi">Field</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/debug/Debug.html#loadConfig(java.io.File)"><B>loadConfig(File)</B></A> - 
Static method in class cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug">Debug</A>
<DD>Read which class to debug on at which level from the given File.
</DL>
<HR>
<A NAME="_M_"><!-- --></A><H2>
<B>M</B></H2>
<DL>
<DT><A HREF="./cx/ath/matthew/unix/testclient.html#main(java.lang.String[])"><B>main(String[])</B></A> - 
Static method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/testclient.html" title="class in cx.ath.matthew.unix">testclient</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/unix/testserver.html#main(java.lang.String[])"><B>main(String[])</B></A> - 
Static method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/testserver.html" title="class in cx.ath.matthew.unix">testserver</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/io/ExecInputStream.html#mark(int)"><B>mark(int)</B></A> - 
Method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/ExecInputStream.html" title="class in cx.ath.matthew.io">ExecInputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/io/TeeInputStream.html#mark(int)"><B>mark(int)</B></A> - 
Method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/TeeInputStream.html" title="class in cx.ath.matthew.io">TeeInputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/io/ExecInputStream.html#markSupported()"><B>markSupported()</B></A> - 
Method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/ExecInputStream.html" title="class in cx.ath.matthew.io">ExecInputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/io/TeeInputStream.html#markSupported()"><B>markSupported()</B></A> - 
Method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/TeeInputStream.html" title="class in cx.ath.matthew.io">TeeInputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/unix/USInputStream.html#markSupported()"><B>markSupported()</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/USInputStream.html" title="class in cx.ath.matthew.unix">USInputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/unix/USInputStream.html#MSG_DONTWAIT"><B>MSG_DONTWAIT</B></A> - 
Static variable in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/USInputStream.html" title="class in cx.ath.matthew.unix">USInputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/cgi/MultipleDropDown.html" title="class in cx.ath.matthew.cgi"><B>MultipleDropDown</B></A> - Class in <A HREF="./cx/ath/matthew/cgi/package-summary.html">cx.ath.matthew.cgi</A><DD>&nbsp;<DT><A HREF="./cx/ath/matthew/cgi/MultipleDropDown.html#MultipleDropDown(java.lang.String, java.lang.String, java.lang.String[], java.lang.String, boolean)"><B>MultipleDropDown(String, String, String[], String, boolean)</B></A> - 
Constructor for class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/MultipleDropDown.html" title="class in cx.ath.matthew.cgi">MultipleDropDown</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/cgi/MultipleDropDown.html#MultipleDropDown(java.lang.String, java.lang.String, java.lang.String[], int, boolean)"><B>MultipleDropDown(String, String, String[], int, boolean)</B></A> - 
Constructor for class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/MultipleDropDown.html" title="class in cx.ath.matthew.cgi">MultipleDropDown</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/cgi/MultipleDropDown.html#MultipleDropDown(java.lang.String, java.lang.String, java.util.List, java.lang.String, boolean)"><B>MultipleDropDown(String, String, List, String, boolean)</B></A> - 
Constructor for class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/MultipleDropDown.html" title="class in cx.ath.matthew.cgi">MultipleDropDown</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/cgi/MultipleDropDown.html#MultipleDropDown(java.lang.String, java.lang.String, java.util.List, int, boolean)"><B>MultipleDropDown(String, String, List, int, boolean)</B></A> - 
Constructor for class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/MultipleDropDown.html" title="class in cx.ath.matthew.cgi">MultipleDropDown</A>
<DD>&nbsp;
</DL>
<HR>
<A NAME="_N_"><!-- --></A><H2>
<B>N</B></H2>
<DL>
<DT><A HREF="./cx/ath/matthew/cgi/Field.html#name"><B>name</B></A> - 
Variable in class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/Field.html" title="class in cx.ath.matthew.cgi">Field</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/cgi/NewTable.html" title="class in cx.ath.matthew.cgi"><B>NewTable</B></A> - Class in <A HREF="./cx/ath/matthew/cgi/package-summary.html">cx.ath.matthew.cgi</A><DD>&nbsp;<DT><A HREF="./cx/ath/matthew/cgi/NewTable.html#NewTable(java.lang.String, java.lang.String)"><B>NewTable(String, String)</B></A> - 
Constructor for class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/NewTable.html" title="class in cx.ath.matthew.cgi">NewTable</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/unix/NotConnectedException.html" title="class in cx.ath.matthew.unix"><B>NotConnectedException</B></A> - Exception in <A HREF="./cx/ath/matthew/unix/package-summary.html">cx.ath.matthew.unix</A><DD>&nbsp;<DT><A HREF="./cx/ath/matthew/unix/NotConnectedException.html#NotConnectedException()"><B>NotConnectedException()</B></A> - 
Constructor for exception cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/NotConnectedException.html" title="class in cx.ath.matthew.unix">NotConnectedException</A>
<DD>&nbsp;
</DL>
<HR>
<A NAME="_O_"><!-- --></A><H2>
<B>O</B></H2>
<DL>
<DT><A HREF="./cx/ath/matthew/cgi/CGI.html#out(byte[])"><B>out(byte[])</B></A> - 
Method in class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/CGI.html" title="class in cx.ath.matthew.cgi">CGI</A>
<DD>Called by CGIs to send byte data to the output.
<DT><A HREF="./cx/ath/matthew/cgi/CGI.html#out(java.lang.String)"><B>out(String)</B></A> - 
Method in class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/CGI.html" title="class in cx.ath.matthew.cgi">CGI</A>
<DD>Called by CGIs to send a string to the output.
</DL>
<HR>
<A NAME="_P_"><!-- --></A><H2>
<B>P</B></H2>
<DL>
<DT><A HREF="./cx/ath/matthew/cgi/Password.html" title="class in cx.ath.matthew.cgi"><B>Password</B></A> - Class in <A HREF="./cx/ath/matthew/cgi/package-summary.html">cx.ath.matthew.cgi</A><DD>&nbsp;<DT><A HREF="./cx/ath/matthew/cgi/Password.html#Password(java.lang.String, java.lang.String, java.lang.String)"><B>Password(String, String, String)</B></A> - 
Constructor for class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/Password.html" title="class in cx.ath.matthew.cgi">Password</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/cgi/CGIErrorHandler.html#print(boolean, java.lang.Exception)"><B>print(boolean, Exception)</B></A> - 
Method in interface cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/CGIErrorHandler.html" title="interface in cx.ath.matthew.cgi">CGIErrorHandler</A>
<DD>This is called if an exception is not caught in the CGI.
<DT><A HREF="./cx/ath/matthew/cgi/CheckBox.html#print()"><B>print()</B></A> - 
Method in class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/CheckBox.html" title="class in cx.ath.matthew.cgi">CheckBox</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/cgi/DefaultErrorHandler.html#print(boolean, java.lang.Exception)"><B>print(boolean, Exception)</B></A> - 
Method in class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/DefaultErrorHandler.html" title="class in cx.ath.matthew.cgi">DefaultErrorHandler</A>
<DD>This is called if an exception is not caught in the CGI.
<DT><A HREF="./cx/ath/matthew/cgi/DisplayField.html#print()"><B>print()</B></A> - 
Method in class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/DisplayField.html" title="class in cx.ath.matthew.cgi">DisplayField</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/cgi/DropDown.html#print()"><B>print()</B></A> - 
Method in class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/DropDown.html" title="class in cx.ath.matthew.cgi">DropDown</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/cgi/Field.html#print()"><B>print()</B></A> - 
Method in class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/Field.html" title="class in cx.ath.matthew.cgi">Field</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/cgi/HiddenField.html#print()"><B>print()</B></A> - 
Method in class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/HiddenField.html" title="class in cx.ath.matthew.cgi">HiddenField</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/cgi/MultipleDropDown.html#print()"><B>print()</B></A> - 
Method in class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/MultipleDropDown.html" title="class in cx.ath.matthew.cgi">MultipleDropDown</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/cgi/NewTable.html#print()"><B>print()</B></A> - 
Method in class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/NewTable.html" title="class in cx.ath.matthew.cgi">NewTable</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/cgi/Password.html#print()"><B>print()</B></A> - 
Method in class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/Password.html" title="class in cx.ath.matthew.cgi">Password</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/cgi/Radio.html#print()"><B>print()</B></A> - 
Method in class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/Radio.html" title="class in cx.ath.matthew.cgi">Radio</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/cgi/SubmitButton.html#print()"><B>print()</B></A> - 
Method in class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/SubmitButton.html" title="class in cx.ath.matthew.cgi">SubmitButton</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/cgi/TextArea.html#print()"><B>print()</B></A> - 
Method in class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/TextArea.html" title="class in cx.ath.matthew.cgi">TextArea</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/cgi/TextField.html#print()"><B>print()</B></A> - 
Method in class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/TextField.html" title="class in cx.ath.matthew.cgi">TextField</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/debug/Debug.html#print(java.lang.Object)"><B>print(Object)</B></A> - 
Static method in class cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug">Debug</A>
<DD>Log at DEBUG
<DT><A HREF="./cx/ath/matthew/debug/Debug.html#print(java.lang.Object, java.lang.Object)"><B>print(Object, Object)</B></A> - 
Static method in class cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug">Debug</A>
<DD><B>Deprecated.</B>&nbsp;<I>In Java 1.5 calling class is automatically identified, no need to pass it in.</I>
<DT><A HREF="./cx/ath/matthew/debug/Debug.html#print(java.lang.Object, int, java.lang.Object)"><B>print(Object, int, Object)</B></A> - 
Static method in class cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug">Debug</A>
<DD><B>Deprecated.</B>&nbsp;<I>In Java 1.5 calling class is automatically identified, no need to pass it in.</I>
<DT><A HREF="./cx/ath/matthew/debug/Debug.html#print(java.lang.Object, int, java.lang.String)"><B>print(Object, int, String)</B></A> - 
Static method in class cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug">Debug</A>
<DD><B>Deprecated.</B>&nbsp;<I>In Java 1.5 calling class is automatically identified, no need to pass it in.</I>
<DT><A HREF="./cx/ath/matthew/debug/Debug.html#print(java.lang.Object, int, java.lang.Throwable)"><B>print(Object, int, Throwable)</B></A> - 
Static method in class cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug">Debug</A>
<DD><B>Deprecated.</B>&nbsp;<I>In Java 1.5 calling class is automatically identified, no need to pass it in.</I>
<DT><A HREF="./cx/ath/matthew/debug/Debug.html#print(java.lang.Class, int, java.lang.Throwable)"><B>print(Class, int, Throwable)</B></A> - 
Static method in class cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug">Debug</A>
<DD><B>Deprecated.</B>&nbsp;<I>In Java 1.5 calling class is automatically identified, no need to pass it in.</I>
<DT><A HREF="./cx/ath/matthew/debug/Debug.html#print(int, java.lang.Throwable)"><B>print(int, Throwable)</B></A> - 
Static method in class cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug">Debug</A>
<DD>Log a Throwable
<DT><A HREF="./cx/ath/matthew/debug/Debug.html#print(int, byte[])"><B>print(int, byte[])</B></A> - 
Static method in class cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug">Debug</A>
<DD>Log a byte array
<DT><A HREF="./cx/ath/matthew/debug/Debug.html#print(int, java.lang.String)"><B>print(int, String)</B></A> - 
Static method in class cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug">Debug</A>
<DD>Log a String
<DT><A HREF="./cx/ath/matthew/debug/Debug.html#print(java.lang.Class, int, java.lang.Object)"><B>print(Class, int, Object)</B></A> - 
Static method in class cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug">Debug</A>
<DD><B>Deprecated.</B>&nbsp;<I>In Java 1.5 calling class is automatically identified, no need to pass it in.</I>
<DT><A HREF="./cx/ath/matthew/debug/Debug.html#print(java.lang.Class, int, java.lang.String)"><B>print(Class, int, String)</B></A> - 
Static method in class cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug">Debug</A>
<DD><B>Deprecated.</B>&nbsp;<I>In Java 1.5 calling class is automatically identified, no need to pass it in.</I>
<DT><A HREF="./cx/ath/matthew/debug/Debug.html#print(int, java.lang.Object)"><B>print(int, Object)</B></A> - 
Static method in class cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug">Debug</A>
<DD>Log an Object
<DT><A HREF="./cx/ath/matthew/utils/Hexdump.html#print(byte[])"><B>print(byte[])</B></A> - 
Static method in class cx.ath.matthew.utils.<A HREF="./cx/ath/matthew/utils/Hexdump.html" title="class in cx.ath.matthew.utils">Hexdump</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/utils/Hexdump.html#print(byte[], int)"><B>print(byte[], int)</B></A> - 
Static method in class cx.ath.matthew.utils.<A HREF="./cx/ath/matthew/utils/Hexdump.html" title="class in cx.ath.matthew.utils">Hexdump</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/utils/Hexdump.html#print(byte[], int, java.io.PrintStream)"><B>print(byte[], int, PrintStream)</B></A> - 
Static method in class cx.ath.matthew.utils.<A HREF="./cx/ath/matthew/utils/Hexdump.html" title="class in cx.ath.matthew.utils">Hexdump</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/utils/Hexdump.html#print(byte[], java.io.PrintStream)"><B>print(byte[], PrintStream)</B></A> - 
Static method in class cx.ath.matthew.utils.<A HREF="./cx/ath/matthew/utils/Hexdump.html" title="class in cx.ath.matthew.utils">Hexdump</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/io/DOMPrinter.html#printDOM(org.w3c.dom.Document, java.io.PrintStream)"><B>printDOM(Document, PrintStream)</B></A> - 
Static method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/DOMPrinter.html" title="class in cx.ath.matthew.io">DOMPrinter</A>
<DD>Print the given document and all its children.
<DT><A HREF="./cx/ath/matthew/io/DOMPrinter.html#printDOM(org.w3c.dom.Document, java.io.OutputStream)"><B>printDOM(Document, OutputStream)</B></A> - 
Static method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/DOMPrinter.html" title="class in cx.ath.matthew.io">DOMPrinter</A>
<DD>Print the given document and all its children.
<DT><A HREF="./cx/ath/matthew/debug/Debug.html#printMap(java.lang.Object, int, java.util.Map)"><B>printMap(Object, int, Map)</B></A> - 
Static method in class cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug">Debug</A>
<DD><B>Deprecated.</B>&nbsp;<I>In Java 1.5 calling class is automatically identified, no need to pass it in.</I>
<DT><A HREF="./cx/ath/matthew/debug/Debug.html#printMap(java.lang.Class, int, java.util.Map)"><B>printMap(Class, int, Map)</B></A> - 
Static method in class cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug">Debug</A>
<DD><B>Deprecated.</B>&nbsp;<I>In Java 1.5 calling class is automatically identified, no need to pass it in.</I>
<DT><A HREF="./cx/ath/matthew/debug/Debug.html#printMap(java.util.Map)"><B>printMap(Map)</B></A> - 
Static method in class cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug">Debug</A>
<DD>Log a Map at DEBUG log level
<DT><A HREF="./cx/ath/matthew/debug/Debug.html#printMap(int, java.util.Map)"><B>printMap(int, Map)</B></A> - 
Static method in class cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug">Debug</A>
<DD>Log a Map
<DT><A HREF="./cx/ath/matthew/io/DOMPrinter.html#printNode(org.w3c.dom.Node, java.io.OutputStream)"><B>printNode(Node, OutputStream)</B></A> - 
Static method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/DOMPrinter.html" title="class in cx.ath.matthew.io">DOMPrinter</A>
<DD>Print the given node and all its children.
<DT><A HREF="./cx/ath/matthew/io/DOMPrinter.html#printNode(org.w3c.dom.Node, java.io.PrintStream)"><B>printNode(Node, PrintStream)</B></A> - 
Static method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/DOMPrinter.html" title="class in cx.ath.matthew.io">DOMPrinter</A>
<DD>Print the given node and all its children.
</DL>
<HR>
<A NAME="_R_"><!-- --></A><H2>
<B>R</B></H2>
<DL>
<DT><A HREF="./cx/ath/matthew/cgi/Radio.html" title="class in cx.ath.matthew.cgi"><B>Radio</B></A> - Class in <A HREF="./cx/ath/matthew/cgi/package-summary.html">cx.ath.matthew.cgi</A><DD>&nbsp;<DT><A HREF="./cx/ath/matthew/cgi/Radio.html#Radio(java.lang.String, java.lang.String, boolean)"><B>Radio(String, String, boolean)</B></A> - 
Constructor for class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/Radio.html" title="class in cx.ath.matthew.cgi">Radio</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/io/ExecInputStream.html#read()"><B>read()</B></A> - 
Method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/ExecInputStream.html" title="class in cx.ath.matthew.io">ExecInputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/io/ExecInputStream.html#read(byte[])"><B>read(byte[])</B></A> - 
Method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/ExecInputStream.html" title="class in cx.ath.matthew.io">ExecInputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/io/ExecInputStream.html#read(byte[], int, int)"><B>read(byte[], int, int)</B></A> - 
Method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/ExecInputStream.html" title="class in cx.ath.matthew.io">ExecInputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/io/TeeInputStream.html#read()"><B>read()</B></A> - 
Method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/TeeInputStream.html" title="class in cx.ath.matthew.io">TeeInputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/io/TeeInputStream.html#read(byte[])"><B>read(byte[])</B></A> - 
Method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/TeeInputStream.html" title="class in cx.ath.matthew.io">TeeInputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/io/TeeInputStream.html#read(byte[], int, int)"><B>read(byte[], int, int)</B></A> - 
Method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/TeeInputStream.html" title="class in cx.ath.matthew.io">TeeInputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/unix/USInputStream.html#read()"><B>read()</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/USInputStream.html" title="class in cx.ath.matthew.unix">USInputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/unix/USInputStream.html#read(byte[], int, int)"><B>read(byte[], int, int)</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/USInputStream.html" title="class in cx.ath.matthew.unix">USInputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/unix/UnixSocket.html#recvCredentialByte()"><B>recvCredentialByte()</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixSocket.html" title="class in cx.ath.matthew.unix">UnixSocket</A>
<DD>Receive a single byte of data, with credentials.
<DT><A HREF="./cx/ath/matthew/io/ExecInputStream.html#reset()"><B>reset()</B></A> - 
Method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/ExecInputStream.html" title="class in cx.ath.matthew.io">ExecInputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/io/TeeInputStream.html#reset()"><B>reset()</B></A> - 
Method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/TeeInputStream.html" title="class in cx.ath.matthew.io">TeeInputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/io/InOutCopier.html#run()"><B>run()</B></A> - 
Method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/InOutCopier.html" title="class in cx.ath.matthew.io">InOutCopier</A>
<DD>Copies from the inputstream to the outputstream
 until EOF on the inputstream or explicitly closed
</DL>
<HR>
<A NAME="_S_"><!-- --></A><H2>
<B>S</B></H2>
<DL>
<DT><A HREF="./cx/ath/matthew/unix/UnixSocket.html#sendCredentialByte(byte)"><B>sendCredentialByte(byte)</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixSocket.html" title="class in cx.ath.matthew.unix">UnixSocket</A>
<DD>Send a single byte of data with credentials.
<DT><A HREF="./cx/ath/matthew/unix/UnixSocket.html#setBlocking(boolean)"><B>setBlocking(boolean)</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixSocket.html" title="class in cx.ath.matthew.unix">UnixSocket</A>
<DD>Set the blocking mode.
<DT><A HREF="./cx/ath/matthew/unix/USInputStream.html#setBlocking(boolean)"><B>setBlocking(boolean)</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/USInputStream.html" title="class in cx.ath.matthew.unix">USInputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/debug/Debug.html#setByteArrayCount(int)"><B>setByteArrayCount(int)</B></A> - 
Static method in class cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug">Debug</A>
<DD>Set the size of hexdumps.
<DT><A HREF="./cx/ath/matthew/debug/Debug.html#setByteArrayWidth(int)"><B>setByteArrayWidth(int)</B></A> - 
Static method in class cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug">Debug</A>
<DD>Set the formatted width of hexdumps.
<DT><A HREF="./cx/ath/matthew/cgi/CGI.html#setcookie(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.util.Date, boolean)"><B>setcookie(String, String, String, String, Date, boolean)</B></A> - 
Method in class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/CGI.html" title="class in cx.ath.matthew.cgi">CGI</A>
<DD>Sets a Cookie in the web browser, with extended attributes.
<DT><A HREF="./cx/ath/matthew/cgi/CGI.html#setcookie(java.lang.String, java.lang.String)"><B>setcookie(String, String)</B></A> - 
Method in class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/CGI.html" title="class in cx.ath.matthew.cgi">CGI</A>
<DD>Sets a Cookie in the web browser.
<DT><A HREF="./cx/ath/matthew/cgi/CGI.html#setErrorHandler(cx.ath.matthew.cgi.CGIErrorHandler)"><B>setErrorHandler(CGIErrorHandler)</B></A> - 
Method in class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/CGI.html" title="class in cx.ath.matthew.cgi">CGI</A>
<DD>Sets a custom exception handler.
<DT><A HREF="./cx/ath/matthew/cgi/HTMLForm.html#setGET(boolean)"><B>setGET(boolean)</B></A> - 
Method in class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/HTMLForm.html" title="class in cx.ath.matthew.cgi">HTMLForm</A>
<DD>Set GET method rather than POST
<DT><A HREF="./cx/ath/matthew/debug/Debug.html#setHexDump(boolean)"><B>setHexDump(boolean)</B></A> - 
Static method in class cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug">Debug</A>
<DD>Enable or disable hexdumps.
<DT><A HREF="./cx/ath/matthew/debug/Debug.html#setLineNos(boolean)"><B>setLineNos(boolean)</B></A> - 
Static method in class cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug">Debug</A>
<DD>Enable or disable line numbers.
<DT><A HREF="./cx/ath/matthew/debug/Debug.html#setOutput(java.io.PrintStream)"><B>setOutput(PrintStream)</B></A> - 
Static method in class cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug">Debug</A>
<DD>Output to the given Stream
<DT><A HREF="./cx/ath/matthew/debug/Debug.html#setOutput(java.lang.String)"><B>setOutput(String)</B></A> - 
Static method in class cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug">Debug</A>
<DD>Output to the given file
<DT><A HREF="./cx/ath/matthew/debug/Debug.html#setOutput()"><B>setOutput()</B></A> - 
Static method in class cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug">Debug</A>
<DD>Output to the default debug.log
<DT><A HREF="./cx/ath/matthew/unix/UnixSocket.html#setPassCred(boolean)"><B>setPassCred(boolean)</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixSocket.html" title="class in cx.ath.matthew.unix">UnixSocket</A>
<DD>Set the credential passing status.
<DT><A HREF="./cx/ath/matthew/debug/Debug.html#setProperties(java.util.Properties)"><B>setProperties(Properties)</B></A> - 
Static method in class cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug">Debug</A>
<DD>Set properties to configure debugging.
<DT><A HREF="./cx/ath/matthew/unix/UnixSocket.html#setSoTimeout(int)"><B>setSoTimeout(int)</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixSocket.html" title="class in cx.ath.matthew.unix">UnixSocket</A>
<DD>Set timeout of read requests.
<DT><A HREF="./cx/ath/matthew/unix/USInputStream.html#setSoTimeout(int)"><B>setSoTimeout(int)</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/USInputStream.html" title="class in cx.ath.matthew.unix">USInputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/debug/Debug.html#setThrowableTraces(boolean)"><B>setThrowableTraces(boolean)</B></A> - 
Static method in class cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug">Debug</A>
<DD>Enable or disable stack traces in Debuging throwables.
<DT><A HREF="./cx/ath/matthew/debug/Debug.html#setTiming(boolean)"><B>setTiming(boolean)</B></A> - 
Static method in class cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug">Debug</A>
<DD>Enable or disable timing in Debug messages.
<DT><A HREF="./cx/ath/matthew/unix/UnixSocket.html#shutdownInput()"><B>shutdownInput()</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixSocket.html" title="class in cx.ath.matthew.unix">UnixSocket</A>
<DD>Shuts down the input stream.
<DT><A HREF="./cx/ath/matthew/unix/UnixSocket.html#shutdownOutput()"><B>shutdownOutput()</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixSocket.html" title="class in cx.ath.matthew.unix">UnixSocket</A>
<DD>Shuts down the output stream.
<DT><A HREF="./cx/ath/matthew/io/ExecInputStream.html#skip(long)"><B>skip(long)</B></A> - 
Method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/ExecInputStream.html" title="class in cx.ath.matthew.io">ExecInputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/io/TeeInputStream.html#skip(long)"><B>skip(long)</B></A> - 
Method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/TeeInputStream.html" title="class in cx.ath.matthew.io">TeeInputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/io/InOutCopier.html#start()"><B>start()</B></A> - 
Method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/InOutCopier.html" title="class in cx.ath.matthew.io">InOutCopier</A>
<DD>Start the thread and wait to make sure its really started
<DT><A HREF="./cx/ath/matthew/cgi/SubmitButton.html" title="class in cx.ath.matthew.cgi"><B>SubmitButton</B></A> - Class in <A HREF="./cx/ath/matthew/cgi/package-summary.html">cx.ath.matthew.cgi</A><DD>&nbsp;<DT><A HREF="./cx/ath/matthew/cgi/SubmitButton.html#SubmitButton(java.lang.String, java.lang.String)"><B>SubmitButton(String, String)</B></A> - 
Constructor for class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/SubmitButton.html" title="class in cx.ath.matthew.cgi">SubmitButton</A>
<DD>&nbsp;
</DL>
<HR>
<A NAME="_T_"><!-- --></A><H2>
<B>T</B></H2>
<DL>
<DT><A HREF="./cx/ath/matthew/io/TeeInputStream.html" title="class in cx.ath.matthew.io"><B>TeeInputStream</B></A> - Class in <A HREF="./cx/ath/matthew/io/package-summary.html">cx.ath.matthew.io</A><DD>Class to copy a stream to a file or another stream as it is being sent through a stream pipe
 E.g.<DT><A HREF="./cx/ath/matthew/io/TeeInputStream.html#TeeInputStream(java.io.InputStream, java.io.OutputStream)"><B>TeeInputStream(InputStream, OutputStream)</B></A> - 
Constructor for class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/TeeInputStream.html" title="class in cx.ath.matthew.io">TeeInputStream</A>
<DD>Create a new TeeInputStream on the given InputStream
 and copy the stream to the given File.
<DT><A HREF="./cx/ath/matthew/io/TeeInputStream.html#TeeInputStream(java.io.InputStream, java.io.File, boolean)"><B>TeeInputStream(InputStream, File, boolean)</B></A> - 
Constructor for class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/TeeInputStream.html" title="class in cx.ath.matthew.io">TeeInputStream</A>
<DD>Create a new TeeInputStream on the given InputStream
 and copy the stream to the given File.
<DT><A HREF="./cx/ath/matthew/io/TeeInputStream.html#TeeInputStream(java.io.InputStream, java.io.File)"><B>TeeInputStream(InputStream, File)</B></A> - 
Constructor for class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/TeeInputStream.html" title="class in cx.ath.matthew.io">TeeInputStream</A>
<DD>Create a new TeeInputStream on the given InputStream
 and copy the stream to the given File.
<DT><A HREF="./cx/ath/matthew/io/TeeInputStream.html#TeeInputStream(java.io.InputStream, java.lang.String, boolean)"><B>TeeInputStream(InputStream, String, boolean)</B></A> - 
Constructor for class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/TeeInputStream.html" title="class in cx.ath.matthew.io">TeeInputStream</A>
<DD>Create a new TeeInputStream on the given InputStream
 and copy the stream to the given File.
<DT><A HREF="./cx/ath/matthew/io/TeeInputStream.html#TeeInputStream(java.io.InputStream, java.lang.String)"><B>TeeInputStream(InputStream, String)</B></A> - 
Constructor for class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/TeeInputStream.html" title="class in cx.ath.matthew.io">TeeInputStream</A>
<DD>Create a new TeeInputStream on the given InputStream
 and copy the stream to the given File.
<DT><A HREF="./cx/ath/matthew/io/TeeOutputStream.html" title="class in cx.ath.matthew.io"><B>TeeOutputStream</B></A> - Class in <A HREF="./cx/ath/matthew/io/package-summary.html">cx.ath.matthew.io</A><DD>Class to copy a stream to another stream or file as it is being sent through a stream pipe
 E.g.<DT><A HREF="./cx/ath/matthew/io/TeeOutputStream.html#TeeOutputStream(java.io.OutputStream, java.io.OutputStream)"><B>TeeOutputStream(OutputStream, OutputStream)</B></A> - 
Constructor for class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/TeeOutputStream.html" title="class in cx.ath.matthew.io">TeeOutputStream</A>
<DD>Create a new TeeOutputStream on the given OutputStream
 and copy the stream to the other OuputStream.
<DT><A HREF="./cx/ath/matthew/io/TeeOutputStream.html#TeeOutputStream(java.io.OutputStream, java.io.File, boolean)"><B>TeeOutputStream(OutputStream, File, boolean)</B></A> - 
Constructor for class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/TeeOutputStream.html" title="class in cx.ath.matthew.io">TeeOutputStream</A>
<DD>Create a new TeeOutputStream on the given OutputStream
 and copy the stream to the given File.
<DT><A HREF="./cx/ath/matthew/io/TeeOutputStream.html#TeeOutputStream(java.io.OutputStream, java.io.File)"><B>TeeOutputStream(OutputStream, File)</B></A> - 
Constructor for class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/TeeOutputStream.html" title="class in cx.ath.matthew.io">TeeOutputStream</A>
<DD>Create a new TeeOutputStream on the given OutputStream
 and copy the stream to the given File.
<DT><A HREF="./cx/ath/matthew/io/TeeOutputStream.html#TeeOutputStream(java.io.OutputStream, java.lang.String, boolean)"><B>TeeOutputStream(OutputStream, String, boolean)</B></A> - 
Constructor for class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/TeeOutputStream.html" title="class in cx.ath.matthew.io">TeeOutputStream</A>
<DD>Create a new TeeOutputStream on the given OutputStream
 and copy the stream to the given File.
<DT><A HREF="./cx/ath/matthew/io/TeeOutputStream.html#TeeOutputStream(java.io.OutputStream, java.lang.String)"><B>TeeOutputStream(OutputStream, String)</B></A> - 
Constructor for class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/TeeOutputStream.html" title="class in cx.ath.matthew.io">TeeOutputStream</A>
<DD>Create a new TeeOutputStream on the given OutputStream
 and copy the stream to the given File.
<DT><A HREF="./cx/ath/matthew/unix/testclient.html" title="class in cx.ath.matthew.unix"><B>testclient</B></A> - Class in <A HREF="./cx/ath/matthew/unix/package-summary.html">cx.ath.matthew.unix</A><DD>&nbsp;<DT><A HREF="./cx/ath/matthew/unix/testclient.html#testclient()"><B>testclient()</B></A> - 
Constructor for class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/testclient.html" title="class in cx.ath.matthew.unix">testclient</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/unix/testserver.html" title="class in cx.ath.matthew.unix"><B>testserver</B></A> - Class in <A HREF="./cx/ath/matthew/unix/package-summary.html">cx.ath.matthew.unix</A><DD>&nbsp;<DT><A HREF="./cx/ath/matthew/unix/testserver.html#testserver()"><B>testserver()</B></A> - 
Constructor for class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/testserver.html" title="class in cx.ath.matthew.unix">testserver</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/cgi/TextArea.html" title="class in cx.ath.matthew.cgi"><B>TextArea</B></A> - Class in <A HREF="./cx/ath/matthew/cgi/package-summary.html">cx.ath.matthew.cgi</A><DD>&nbsp;<DT><A HREF="./cx/ath/matthew/cgi/TextArea.html#TextArea(java.lang.String, java.lang.String, java.lang.String)"><B>TextArea(String, String, String)</B></A> - 
Constructor for class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/TextArea.html" title="class in cx.ath.matthew.cgi">TextArea</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/cgi/TextArea.html#TextArea(java.lang.String, java.lang.String, java.lang.String, int, int)"><B>TextArea(String, String, String, int, int)</B></A> - 
Constructor for class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/TextArea.html" title="class in cx.ath.matthew.cgi">TextArea</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/cgi/TextField.html" title="class in cx.ath.matthew.cgi"><B>TextField</B></A> - Class in <A HREF="./cx/ath/matthew/cgi/package-summary.html">cx.ath.matthew.cgi</A><DD>&nbsp;<DT><A HREF="./cx/ath/matthew/cgi/TextField.html#TextField(java.lang.String, java.lang.String)"><B>TextField(String, String)</B></A> - 
Constructor for class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/TextField.html" title="class in cx.ath.matthew.cgi">TextField</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/cgi/TextField.html#TextField(java.lang.String, java.lang.String, java.lang.String)"><B>TextField(String, String, String)</B></A> - 
Constructor for class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/TextField.html" title="class in cx.ath.matthew.cgi">TextField</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/cgi/TextField.html#TextField(java.lang.String, java.lang.String, java.lang.String, int)"><B>TextField(String, String, String, int)</B></A> - 
Constructor for class cx.ath.matthew.cgi.<A HREF="./cx/ath/matthew/cgi/TextField.html" title="class in cx.ath.matthew.cgi">TextField</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/utils/Hexdump.html#toAscii(byte[])"><B>toAscii(byte[])</B></A> - 
Static method in class cx.ath.matthew.utils.<A HREF="./cx/ath/matthew/utils/Hexdump.html" title="class in cx.ath.matthew.utils">Hexdump</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/utils/Hexdump.html#toAscii(byte[], int, int)"><B>toAscii(byte[], int, int)</B></A> - 
Static method in class cx.ath.matthew.utils.<A HREF="./cx/ath/matthew/utils/Hexdump.html" title="class in cx.ath.matthew.utils">Hexdump</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/utils/Hexdump.html#toByteArray(byte[])"><B>toByteArray(byte[])</B></A> - 
Static method in class cx.ath.matthew.utils.<A HREF="./cx/ath/matthew/utils/Hexdump.html" title="class in cx.ath.matthew.utils">Hexdump</A>
<DD>Returns a string which can be written to a Java source file as part
 of a static initializer for a byte array.
<DT><A HREF="./cx/ath/matthew/utils/Hexdump.html#toByteArray(byte[], int, int)"><B>toByteArray(byte[], int, int)</B></A> - 
Static method in class cx.ath.matthew.utils.<A HREF="./cx/ath/matthew/utils/Hexdump.html" title="class in cx.ath.matthew.utils">Hexdump</A>
<DD>Returns a string which can be written to a Java source file as part
 of a static initializer for a byte array.
<DT><A HREF="./cx/ath/matthew/utils/Hexdump.html#toHex(byte[])"><B>toHex(byte[])</B></A> - 
Static method in class cx.ath.matthew.utils.<A HREF="./cx/ath/matthew/utils/Hexdump.html" title="class in cx.ath.matthew.utils">Hexdump</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/utils/Hexdump.html#toHex(byte[], int, int)"><B>toHex(byte[], int, int)</B></A> - 
Static method in class cx.ath.matthew.utils.<A HREF="./cx/ath/matthew/utils/Hexdump.html" title="class in cx.ath.matthew.utils">Hexdump</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/unix/UnixSocketAddress.html#toString()"><B>toString()</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixSocketAddress.html" title="class in cx.ath.matthew.unix">UnixSocketAddress</A>
<DD>Return the Address as a String.
</DL>
<HR>
<A NAME="_U_"><!-- --></A><H2>
<B>U</B></H2>
<DL>
<DT><A HREF="./cx/ath/matthew/unix/UnixIOException.html" title="class in cx.ath.matthew.unix"><B>UnixIOException</B></A> - Exception in <A HREF="./cx/ath/matthew/unix/package-summary.html">cx.ath.matthew.unix</A><DD>An IO Exception which occurred during UNIX Socket IO<DT><A HREF="./cx/ath/matthew/unix/UnixIOException.html#UnixIOException(int, java.lang.String)"><B>UnixIOException(int, String)</B></A> - 
Constructor for exception cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixIOException.html" title="class in cx.ath.matthew.unix">UnixIOException</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/unix/UnixServerSocket.html" title="class in cx.ath.matthew.unix"><B>UnixServerSocket</B></A> - Class in <A HREF="./cx/ath/matthew/unix/package-summary.html">cx.ath.matthew.unix</A><DD>Represents a listening UNIX Socket.<DT><A HREF="./cx/ath/matthew/unix/UnixServerSocket.html#UnixServerSocket()"><B>UnixServerSocket()</B></A> - 
Constructor for class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixServerSocket.html" title="class in cx.ath.matthew.unix">UnixServerSocket</A>
<DD>Create an un-bound server socket.
<DT><A HREF="./cx/ath/matthew/unix/UnixServerSocket.html#UnixServerSocket(cx.ath.matthew.unix.UnixSocketAddress)"><B>UnixServerSocket(UnixSocketAddress)</B></A> - 
Constructor for class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixServerSocket.html" title="class in cx.ath.matthew.unix">UnixServerSocket</A>
<DD>Create a server socket bound to the given address.
<DT><A HREF="./cx/ath/matthew/unix/UnixServerSocket.html#UnixServerSocket(java.lang.String)"><B>UnixServerSocket(String)</B></A> - 
Constructor for class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixServerSocket.html" title="class in cx.ath.matthew.unix">UnixServerSocket</A>
<DD>Create a server socket bound to the given address.
<DT><A HREF="./cx/ath/matthew/unix/UnixSocket.html" title="class in cx.ath.matthew.unix"><B>UnixSocket</B></A> - Class in <A HREF="./cx/ath/matthew/unix/package-summary.html">cx.ath.matthew.unix</A><DD>Represents a UnixSocket.<DT><A HREF="./cx/ath/matthew/unix/UnixSocket.html#UnixSocket()"><B>UnixSocket()</B></A> - 
Constructor for class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixSocket.html" title="class in cx.ath.matthew.unix">UnixSocket</A>
<DD>Create an unconnected socket.
<DT><A HREF="./cx/ath/matthew/unix/UnixSocket.html#UnixSocket(cx.ath.matthew.unix.UnixSocketAddress)"><B>UnixSocket(UnixSocketAddress)</B></A> - 
Constructor for class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixSocket.html" title="class in cx.ath.matthew.unix">UnixSocket</A>
<DD>Create a socket connected to the given address.
<DT><A HREF="./cx/ath/matthew/unix/UnixSocket.html#UnixSocket(java.lang.String)"><B>UnixSocket(String)</B></A> - 
Constructor for class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixSocket.html" title="class in cx.ath.matthew.unix">UnixSocket</A>
<DD>Create a socket connected to the given address.
<DT><A HREF="./cx/ath/matthew/unix/UnixSocketAddress.html" title="class in cx.ath.matthew.unix"><B>UnixSocketAddress</B></A> - Class in <A HREF="./cx/ath/matthew/unix/package-summary.html">cx.ath.matthew.unix</A><DD>Represents an address for a Unix Socket<DT><A HREF="./cx/ath/matthew/unix/UnixSocketAddress.html#UnixSocketAddress(java.lang.String, boolean)"><B>UnixSocketAddress(String, boolean)</B></A> - 
Constructor for class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixSocketAddress.html" title="class in cx.ath.matthew.unix">UnixSocketAddress</A>
<DD>Create the address.
<DT><A HREF="./cx/ath/matthew/unix/UnixSocketAddress.html#UnixSocketAddress(java.lang.String)"><B>UnixSocketAddress(String)</B></A> - 
Constructor for class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/UnixSocketAddress.html" title="class in cx.ath.matthew.unix">UnixSocketAddress</A>
<DD>Create the address.
<DT><A HREF="./cx/ath/matthew/unix/USInputStream.html" title="class in cx.ath.matthew.unix"><B>USInputStream</B></A> - Class in <A HREF="./cx/ath/matthew/unix/package-summary.html">cx.ath.matthew.unix</A><DD>&nbsp;<DT><A HREF="./cx/ath/matthew/unix/USInputStream.html#USInputStream(int, cx.ath.matthew.unix.UnixSocket)"><B>USInputStream(int, UnixSocket)</B></A> - 
Constructor for class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/USInputStream.html" title="class in cx.ath.matthew.unix">USInputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/unix/USOutputStream.html" title="class in cx.ath.matthew.unix"><B>USOutputStream</B></A> - Class in <A HREF="./cx/ath/matthew/unix/package-summary.html">cx.ath.matthew.unix</A><DD>&nbsp;<DT><A HREF="./cx/ath/matthew/unix/USOutputStream.html#USOutputStream(int, cx.ath.matthew.unix.UnixSocket)"><B>USOutputStream(int, UnixSocket)</B></A> - 
Constructor for class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/USOutputStream.html" title="class in cx.ath.matthew.unix">USOutputStream</A>
<DD>&nbsp;
</DL>
<HR>
<A NAME="_V_"><!-- --></A><H2>
<B>V</B></H2>
<DL>
<DT><A HREF="./cx/ath/matthew/debug/Debug.html#VERBOSE"><B>VERBOSE</B></A> - 
Static variable in class cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug">Debug</A>
<DD>Verbose debug messages
</DL>
<HR>
<A NAME="_W_"><!-- --></A><H2>
<B>W</B></H2>
<DL>
<DT><A HREF="./cx/ath/matthew/debug/Debug.html#WARN"><B>WARN</B></A> - 
Static variable in class cx.ath.matthew.debug.<A HREF="./cx/ath/matthew/debug/Debug.html" title="class in cx.ath.matthew.debug">Debug</A>
<DD>Warnings
<DT><A HREF="./cx/ath/matthew/io/ExecOutputStream.html#write(byte[])"><B>write(byte[])</B></A> - 
Method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/ExecOutputStream.html" title="class in cx.ath.matthew.io">ExecOutputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/io/ExecOutputStream.html#write(byte[], int, int)"><B>write(byte[], int, int)</B></A> - 
Method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/ExecOutputStream.html" title="class in cx.ath.matthew.io">ExecOutputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/io/ExecOutputStream.html#write(int)"><B>write(int)</B></A> - 
Method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/ExecOutputStream.html" title="class in cx.ath.matthew.io">ExecOutputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/io/TeeOutputStream.html#write(int)"><B>write(int)</B></A> - 
Method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/TeeOutputStream.html" title="class in cx.ath.matthew.io">TeeOutputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/io/TeeOutputStream.html#write(byte[])"><B>write(byte[])</B></A> - 
Method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/TeeOutputStream.html" title="class in cx.ath.matthew.io">TeeOutputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/io/TeeOutputStream.html#write(byte[], int, int)"><B>write(byte[], int, int)</B></A> - 
Method in class cx.ath.matthew.io.<A HREF="./cx/ath/matthew/io/TeeOutputStream.html" title="class in cx.ath.matthew.io">TeeOutputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/unix/USOutputStream.html#write(byte[][])"><B>write(byte[][])</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/USOutputStream.html" title="class in cx.ath.matthew.unix">USOutputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/unix/USOutputStream.html#write(byte[], int, int)"><B>write(byte[], int, int)</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/USOutputStream.html" title="class in cx.ath.matthew.unix">USOutputStream</A>
<DD>&nbsp;
<DT><A HREF="./cx/ath/matthew/unix/USOutputStream.html#write(int)"><B>write(int)</B></A> - 
Method in class cx.ath.matthew.unix.<A HREF="./cx/ath/matthew/unix/USOutputStream.html" title="class in cx.ath.matthew.unix">USOutputStream</A>
<DD>&nbsp;
</DL>
<HR>
<A HREF="#_A_">A</A> <A HREF="#_B_">B</A> <A HREF="#_C_">C</A> <A HREF="#_D_">D</A> <A HREF="#_E_">E</A> <A HREF="#_F_">F</A> <A HREF="#_G_">G</A> <A HREF="#_H_">H</A> <A HREF="#_I_">I</A> <A HREF="#_L_">L</A> <A HREF="#_M_">M</A> <A HREF="#_N_">N</A> <A HREF="#_O_">O</A> <A HREF="#_P_">P</A> <A HREF="#_R_">R</A> <A HREF="#_S_">S</A> <A HREF="#_T_">T</A> <A HREF="#_U_">U</A> <A HREF="#_V_">V</A> <A HREF="#_W_">W</A> 

<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
  <TR ALIGN="center" VALIGN="top">
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="./overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="./overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="./deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="./help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
  </TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>

<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
&nbsp;PREV&nbsp;
&nbsp;NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
  <A HREF="./index.html?index-all.html" target="_top"><B>FRAMES</B></A>  &nbsp;
&nbsp;<A HREF="index-all.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
&nbsp;<SCRIPT type="text/javascript">
  <!--
  if(window==top) {
    document.writeln('<A HREF="./allclasses-noframe.html"><B>All Classes</B></A>');
  }
  //-->
</SCRIPT>
<NOSCRIPT>
  <A HREF="./allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>


</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->

<HR>

</BODY>
</HTML>