| Edit | Rename | Upload | Download | Back to Top |
Here is the list of messages I accumulated over several weeks time (vw7.2).
addBinding: binding in: nameSpace attributes: attributes "A binding was added to nameSpace."
addClass: aClass attributes: atributes "Include indication that a new class was created."
addNameSpace: nameSpace attributes: attributes "Include indication that a new nameSpace was created."
addSelector: selector class: class "Include indication that a method has been added."
addSelector: selector class: class attributes: attributes "Include indication that a method has been added."
bundleStructure: aBundle "Include indication that aBundle's structure has changed."
changeBinding: binding in: nameSpace attributes: attributes "Include indication that a variable binding definition has been changed. ?? That a variable binding has been moved to a different category??"
changeClass: class "Include indication that a class definition has been changed. ?? That a class has been moved to a different category??"
changeClass: class attributes: attributes "Include indication that a class definition has been changed. ?? That a class has been moved to a different category??"
changeNameSpace: nameSpace attributes: attributes "Include indication that a nameSpace definition has been changed. ?? That a nameSpace has been moved to a different category??"
changeSelector: selector class: class "Include indication that a method has been edited."
changeSelector: selector class: class attributes: attributes "Include indication that a method has been edited."
changeSelector: selector class: class protocol: protocol "Include indication that a method has been moved to another protocol."
commentClass: nameSpace "Include indication that a nameSpace comment has been changed."
commentNameSpace: nameSpace "Include indication that a nameSpace comment has been changed."
component: component property: property value: value "Include indication that a component's property has been changed."
component: component definition: aClass selector: aSelector change: changeSymbol "Include indication that a method was #added or #removed from a CodeComponent."
component: component definition: aClassOrNameSpace static: staticKey change: changeSymbol "Include indication that a static variable was #added or #removed from a CodeComponent."
component: component definition: anObject change: changeSymbol "Include indication that a class/namespace was #added or #removed from a CodeComponent."
component: component renamedTo: aString "Include indication that a code component was renamed."
createdComponent: aCodeComponent "Include indication that aCodeComponent was loaded."
loadParcel: aParcel "Include indication that aParcel was loaded."
loadPundle: aPundle "Include indication that aPundle was loaded."
relocateClass: class from: nameSpace to: newNameSpace "Include indication that a class has been moved."
relocateNameSpace: nameSpace from: parent to: newParent "Include indication that a nameSpace has been moved."
removeBinding: binding in: nameSpace "A variable binding has been removed from the system."
removeClass: class "Include indication that a class has been forgotten."
removeNameSpace: nameSpace "Include indication that a nameSpace has been forgotten."
removeSelector: selector class: class "Include indication that a method has been forgotten."
renameClass: class as: newName "Include indication that a class has been renamed."
renameNameSpace: nameSpace as: newName "Include indication that a nameSpace has been renamed."
reorganizeClass: class "Include indication that a class was reorganized."
reorganizeClassData: class "Include indication that a class was reorganized."
reorganizeNameSpace: nameSpace "Include indication that a nameSpace was reorganized."
unloadComponent: aCodeComponent "Include indication that aCodeComponent was unloaded."
update: anAspect with: arguments from: from | ws ks | ws := Transcript. ws cr print: from. (ks := anAspect keywords) size = arguments size ifTrue: [ks with: arguments do: [:str :arg | ws cr; tab; tab. ws nextPutAll: str; tab; print: arg]. ws flush. self perform: anAspect withArguments: arguments] ifFalse: [(ws space) print: anAspect; crtab; print: arguments; flush. self halt]. ws flush
| Edit | Rename | Upload | Download | Back to Top |