home *** CD-ROM | disk | FTP | other *** search
/ PC Treasures, Inc. / pctreasures.mdf / VMX86_01.CAB / javax86.cab / jautoexp.dat < prev    next >
Text File  |  1999-07-21  |  7KB  |  137 lines

  1. ; JAutoExp.Dat - templates for automatically expanding data
  2. ; Copyright(c) 1999 Microsoft Corporation. All Rights Reserved.
  3. ;---------------------------------------------------------------
  4. ;
  5. ; While debugging, Data Tips and items in the Watch and Variable
  6. ; windows are automatically expanded to show their most important
  7. ; elements. The expansion follows the format given by the rules
  8. ; in this file. You can add rules for your types or change the
  9. ; predefined rules.
  10. ;
  11. ; For good examples, read the rules in this file.
  12. ;
  13. ; An AutoExpand rule is a line with the name of a type, an equals
  14. ; sign, and text with replaceable parts in angle brackets. The
  15. ; part in angle brackets names a member of the type and an
  16. ; optional Watch format specifier.
  17. ;
  18. ; AutoExpand rules use the following syntax. The equals sign (=),
  19. ; angle brackets (<>), and comma are taken literally. Square
  20. ; brackets ([]) indicate optional items.
  21. ;
  22. ; type=[text]<member[,format]>...
  23. ;
  24. ; type      Name of the type.
  25. ;
  26. ; text      Any text.  Usually the name of the member to display,
  27. ;           or a shorthand name for the member.
  28. ;
  29. ; member    Name of a member to display.
  30. ;
  31. ; format    Watch format specifier. One of the following:
  32. ;
  33. ;   Letter  Description                 Sample         Display
  34. ;   ------  --------------------------  ------------   -------------
  35. ;   d,i     Signed decimal integer      0xF000F065,d   -268373915
  36. ;   u       Unsigned decimal integer    0x0065,u       101
  37. ;   o       Unsigned octal integer      0xF065,o       0170145
  38. ;   x,X     Hexadecimal integer         61541,X        0X0000F065
  39. ;   l,h     long or short prefix for    00406042,hx    0x0c22
  40. ;             d, i, u, o, x, X
  41. ;   f       Signed floating-point       3./2.,f        1.500000
  42. ;   e       Signed scientific-notation  3./2.,e        1.500000e+000
  43. ;   g       Shorter of e and f          3./2.,g        1.5
  44. ;
  45. ; If there is no rule for a class, the base classes are checked for
  46. ; a matching rule.
  47. ;
  48. ;---------------------------------------------------------------
  49. [AutoExpand]
  50.  
  51. ; java.lang.*
  52. java.lang.Boolean =<value>
  53. java.lang.Character =<value>
  54. java.lang.Double =<value>
  55. java.lang.Float =<value>
  56. java.lang.Integer =<value>
  57. java.lang.Long =<value>
  58. java.lang.String =<value>
  59. java.lang.StringBuffer =value=<value>
  60.  
  61. java.lang.Throwable =detailMessage=<detailMessage>
  62. java.lang.Thread =name=<name>
  63. java.lang.ThreadGroup =name=<name>
  64. java.lang.Win32Process =handle=<handle>
  65.  
  66. ; java.util.*
  67. java.util.Date =value=<value>
  68. java.util.Hashtable =count=<count>, threshold=<threshold>, loadFactor=<loadFactor>
  69. java.util.HashtableEntry =hash=<hash>, key=<key>, value=<value>
  70. java.util.HashtableEnumerator =index=<index>
  71. java.util.Random =seed=<seed>
  72. java.util.StringTokenizer =currentPosition=<currentPosition>, str=<str>
  73. java.util.Vector =elementCount=<elementCount>, capacityIncrement=<capacityIncrement>
  74. java.util.VectorEnumerator =count=<count>, vector=<vector>
  75.  
  76. ; java.io.*
  77. java.io.BufferedInputStream =count=<count>, pos=<pos>, marklimit=<marklimit>, markpos=<markpos>
  78. java.io.BufferedOutputStream =count=<count>
  79. java.io.ByteArrayInputStream =count=<count>, pos=<pos>
  80. java.io.ByteArrayOutputStream =count=<count>
  81. java.io.DataOutputStream =written=<written>
  82. java.io.DataOutputStream =written=<written>
  83. java.io.File =path=<path>
  84. java.io.FileDescriptor =fd=<fd>
  85. java.io.FileInputStream =fd=<fd>
  86. java.io.FileOutputStream =fd=<fd>
  87. java.io.InterruptedIOException =bytesTransferred=<bytesTransferred>
  88. java.io.LineNumberInputStream =lineNumber=<lineNumber>, markLineNumber=<markLineNumber>, pushBack=<pushBack>
  89. java.io.PipedInputStream =closed=<closed>, in=<in>, out=<out>, readSide=<readSide>, writeSide=<writeSide>
  90. java.io.PipedOutputStream =sink=<sink>
  91. java.io.PrintStream =autoFlush=<autoFlush>, trouble=<trouble>
  92. java.io.PushbackInputStream =pushBack=<pushBack>
  93. java.io.RandomAccessFile =fd=<fd>
  94. java.io.SrtingBufferInputStream =count=<count>, pos=<pos>
  95.  
  96. ; java.net.*
  97. java.net.DatagramPacket =address=<address>, length=<length>, port=<port>
  98. java.net.DatagramSocket =fd=<fd>, localPort=<localPort>
  99. java.net.InetAddress =address=<address>, family=<family>, hostName=<hostName>
  100. java.net.ServerSocket =<impl>
  101. java.net.Socket =<impl>
  102. java.net.SocketImpl =fd=<fd>, address=<address>, port=<port>, localPort=<localPort>
  103. java.net.SocketInputStream =eof=<eof>, <impl>
  104. java.net.SocketOutputStream =<impl>
  105. java.net.URL =protocol=<protocol>, host=<host>, port=<port>, file=<file>, ref=<ref>
  106. java.net.URLConnection =connected=<connected>, url=<url>, doInput=<doInput>, doOutput=<doOutput>, allowUserInteraction=<allowUserInteraction>, useCaches=<useCaches>
  107.  
  108. ; java.awt.*
  109. java.awt.BorderLayout =hgap=<hgap>, vgap=<vgap>
  110. java.awt.Button =label=<label>
  111. java.awt.CardLayout =hgap=<hgap>, vgap=<vgap>
  112. java.awt.CheckBox =label=<label>, state=<state>
  113. java.awt.CheckBoxGroup =currentChoice=<currentChoice>
  114. java.awt.CheckBoxMenuItem =state=<state>
  115. java.awt.Choice =selectedIndex=<selectedIndex>
  116. java.awt.Color =value=<value>
  117. java.awt.Component =x=<x>, y=<y>, width=<width>, height=<height>, visible=<visible>, enabled=<enabled>, valid=<valid>
  118. ;java.awt.Container =ncomponents=<ncomponents>, <super>
  119. java.awt.Container =ncomponents=<ncomponents>
  120. ;java.awt.Dialog =resizable=<resizable>, modal=<modal>, title=<title>, <super>
  121. java.awt.Dialog =resizable=<resizable>, modal=<modal>, title=<title>
  122. java.awt.Dimension =width=<width>, height=<height>
  123. java.awt.FocusManager =focusRoot=<focusRoot>, focusOwner=<focusOwner>
  124. ;java.awt.Frame =title=<title>, resizable=<resizable>, <super>
  125. java.awt.Frame =title=<title>, resizable=<resizable>
  126. java.awt.GridBahConstraints =gridx=<gridx>, gridy=<gridy>, gridwidth=<gridwidth>, gridheight=<gridheight>, weightx=<weightx>, weighty=<weighty>
  127. java.awt.GridBagLayout =defaultConstraints=<defaultConstraints>, layoutInfo=<layoutInfo>
  128. java.awt.GridBagInfo =width=<width>, height=<height>, startx=<startx>, starty=<starty>
  129. java.awt.GridLayout =hgap=<hgap>, vgap=<vgap>, rows=<rows>, cols=<cols>
  130. java.awt.Insets =top=<top>, left=<left>, bottom=<bottom>, right=<right>
  131. java.awt.Label =label=<label>, alignment=<alignment>
  132. ;java.awt.List =rows=<rows>, multipleSelections=<multipleSelections>, <super>
  133. java.awt.List =rows=<rows>, multipleSelections=<multipleSelections>
  134. java.awt.MenuItem =label=<label>, enabled=<enabled>
  135. ;java.awt.MenuBar =tearOff=<tearOff>, isHelpMenu=<isHelpMenu>, <super>
  136. java.awt.MenuBar =tearOff=<tearOff>, isHelpMenu=<isHelpMenu>
  137.