home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 February / CMCD0205.ISO / Software / Freeware / Programare / Sharp / SharpDevelop_1.0.3.1761_Setup.exe / VBNet.EmptyClass.xft < prev    next >
Extensible Markup Language  |  2004-10-06  |  1KB  |  42 lines

  1. <?xml version="1.0"?>
  2. <Template author="Mike Krueger" version="1.0">
  3.     
  4.     <Config
  5.         name        = "${res:Templates.File.EmptyClass.Name}"
  6.         icon        = "VB.File.NewClass"
  7.         category    = "VB"
  8.         defaultname = "Class${Number}.vb"
  9.         language    = "VBNET"
  10.     />
  11.      
  12.     <Description>${res:Templates.File.EmptyClass.Description}</Description>
  13.     
  14.     <!-- 
  15.     Special new file templates:
  16.         ${StandardNamespace}        -> Standardnamespace of the current project or FileNameWithoutExtension
  17.         ${FullName}                 -> Full generated path name
  18.         ${FileName}                 -> File name with extension
  19.         ${FileNameWithoutExtension} -> File name without extension
  20.         ${Extension}                -> Extension in the form ".cs"
  21.         ${Path}                     -> Full path of the file
  22.      -->
  23.     <Files>
  24.         <File name="${FullName}" language="VBNET"><![CDATA[${StandardHeader.VBNET}
  25.  
  26. Imports System
  27.  
  28. Namespace ${StandardNamespace}
  29.  
  30.     Public Class ${ClassName}
  31.     
  32.         Public Sub New()
  33.         End Sub
  34.     End Class
  35. End Namespace
  36. ]]></File>
  37.     </Files>
  38.     
  39.     <AdditionalOptions/>
  40. </Template>
  41.  
  42.