jv_vdb.st
changeset 0 33a652015a1a
child 1 09b3ef5606e7
equal deleted inserted replaced
-1:000000000000 0:33a652015a1a
       
     1 "{ Package: 'jv:vdb' }"
       
     2 
       
     3 LibraryDefinition subclass:#jv_vdb
       
     4 	instanceVariableNames:''
       
     5 	classVariableNames:''
       
     6 	poolDictionaries:''
       
     7 	category:'* Projects & Packages *'
       
     8 !
       
     9 
       
    10 
       
    11 !jv_vdb class methodsFor:'description'!
       
    12 
       
    13 excludedFromPreRequisites
       
    14     "list packages which are to be explicitely excluded from the automatic constructed
       
    15      prerequisites list. If empty, everything that is found along the inheritance of any of
       
    16      my classes is considered to be a prerequisite package."
       
    17 
       
    18     ^ #(
       
    19     )
       
    20 !
       
    21 
       
    22 mandatoryPreRequisites
       
    23     "list packages which are mandatory as a prerequisite.
       
    24      This are packages containing superclasses of my classes and classes which
       
    25      are extended by myself.
       
    26      They are mandatory, beacuse we need these packages as a prerequisite for loading and compiling.
       
    27      This method is generated automatically,
       
    28      by searching along the inheritance chain of all of my classes."
       
    29 
       
    30     ^ #(
       
    31         #'stx:libbasic'    "LibraryDefinition - superclass of jv_vdb "
       
    32         #'stx:libview'    "DisplaySurface - superclass of VDBConsoleView "
       
    33         #'stx:libview2'    "ApplicationModel - superclass of VDBAbstractApplication "
       
    34         #'stx:libwidg'    "EditTextView - superclass of VDBConsoleView "
       
    35     )
       
    36 !
       
    37 
       
    38 referencedPreRequisites
       
    39     "list packages which are a prerequisite, because they contain
       
    40      classes which are referenced by my classes.
       
    41      We do not need these packages as a prerequisite for loading or compiling.
       
    42      This method is generated automatically,
       
    43      by searching all classes (and their packages) which are referenced by my classes."
       
    44 
       
    45     ^ #(
       
    46         #'jv:libgdbs'    "GDBCLICommand - referenced by VDBConsoleView>>keyPressReturn "
       
    47     )
       
    48 !
       
    49 
       
    50 subProjects
       
    51     "list packages which are known as subprojects. 
       
    52      The generated makefile will enter those and make there as well.
       
    53      However: they are not forced to be loaded when a package is loaded; 
       
    54      for those, redefine requiredPrerequisites."
       
    55 
       
    56     ^ #(
       
    57     )
       
    58 ! !
       
    59 
       
    60 !jv_vdb class methodsFor:'description - contents'!
       
    61 
       
    62 classNamesAndAttributes
       
    63     "lists the classes which are to be included in the project.
       
    64      Each entry in the list may be: a single class-name (symbol),
       
    65      or an array-literal consisting of class name and attributes.
       
    66      Attributes are: #autoload or #<os> where os is one of win32, unix,..."
       
    67 
       
    68     ^ #(
       
    69         "<className> or (<className> attributes...) in load order"
       
    70         VDBAbstractApplication
       
    71         VDBConsoleView
       
    72         VDBInternalPipeStream
       
    73         #'jv_vdb'
       
    74         VDBConsoleApplication
       
    75         VDBDebuggerApplication
       
    76     )
       
    77 !
       
    78 
       
    79 extensionMethodNames
       
    80     "list class/selector pairs of extensions.
       
    81      A correponding method with real names must be present in my concrete subclasses"
       
    82 
       
    83     ^ #(
       
    84     )
       
    85 ! !
       
    86 
       
    87 !jv_vdb class methodsFor:'description - project information'!
       
    88 
       
    89 companyName
       
    90     "Returns a company string which will appear in <lib>.rc.
       
    91      Under win32, this is placed into the dlls file-info"
       
    92 
       
    93     ^ 'My Company'
       
    94 !
       
    95 
       
    96 description
       
    97     "Returns a description string which will appear in nt.def / bc.def"
       
    98 
       
    99     ^ 'Class Library'
       
   100 !
       
   101 
       
   102 legalCopyright
       
   103     "Returns a copyright string which will appear in <lib>.rc.
       
   104      Under win32, this is placed into the dlls file-info"
       
   105 
       
   106     ^ 'My CopyRight or CopyLeft'
       
   107 !
       
   108 
       
   109 productName
       
   110     "Returns a product name which will appear in <lib>.rc.
       
   111      Under win32, this is placed into the dlls file-info.
       
   112      This method is usually redefined in a concrete application definition"
       
   113 
       
   114     ^ 'LibraryName'
       
   115 ! !
       
   116 
       
   117 !jv_vdb class methodsFor:'documentation'!
       
   118 
       
   119 version_HG
       
   120     ^ '$Changeset: <not expanded> $'
       
   121 ! !
       
   122