AbstractFileApplicationNoteBookComponent.st
changeset 5010 27aa6fa93dcd
parent 4529 134c48ecdef5
child 5120 e4c15c9d82ba
--- a/AbstractFileApplicationNoteBookComponent.st	Mon Jun 30 12:48:22 2003 +0200
+++ b/AbstractFileApplicationNoteBookComponent.st	Mon Jun 30 15:24:18 2003 +0200
@@ -17,11 +17,11 @@
 
 !AbstractFileApplicationNoteBookComponent class methodsFor:'queries'!
 
-canOpenItem:aItem
+canOpenItem:anItem
 
 "
     example:
-    ^ (aItem suffix == 'cc')
+    ^ (anItem suffix == 'cc')
 "
     ^ false
 !
@@ -60,9 +60,9 @@
 
 !AbstractFileApplicationNoteBookComponent methodsFor:'actions'!
 
-changeItem:aItem
+changeItem:anItem
 
-    ^ self item:aItem.
+    ^ self item:anItem.
 !
 
 doClose
@@ -164,9 +164,9 @@
     ^ item
 !
 
-item:aItem
+item:anItem
 
-    item := aItem.
+    item := anItem.
     ^ true
 !
 
@@ -193,5 +193,5 @@
 !AbstractFileApplicationNoteBookComponent class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractFileApplicationNoteBookComponent.st,v 1.6 2003-02-06 17:20:20 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractFileApplicationNoteBookComponent.st,v 1.7 2003-06-30 13:24:10 cg Exp $'
 ! !