AbstractOperatingSystem.st
changeset 7289 ae352d72ec31
parent 7258 9ccdbee7d1ad
child 7295 9ddb9543e369
--- a/AbstractOperatingSystem.st	Thu May 15 17:43:07 2003 +0200
+++ b/AbstractOperatingSystem.st	Thu May 15 17:49:19 2003 +0200
@@ -3090,6 +3090,24 @@
     "Modified: / 5.6.1998 / 19:03:15 / cg"
 ! !
 
+!AbstractOperatingSystem class methodsFor:'obsolete'!
+
+getNetworkMACAdresses
+    "backward compatibility; bad spelling"
+
+    <resource:#obsolete>
+
+    ^ self getNetworkMACAddresses
+!
+
+getNetworkMACAdressesForIf:ifName
+    "backward compatibility; bad spelling"
+
+    <resource:#obsolete>
+
+    ^ self getNetworkMACAddressesForIf:ifName
+! !
+
 !AbstractOperatingSystem class methodsFor:'os queries'!
 
 getCCDefine
@@ -3292,18 +3310,17 @@
     self subclassResponsibility
 !
 
-getNetworkMACAdresses
-" return a dictionary with key:name of interface and value:the MAC adress for each interface 
-"
+getNetworkMACAddresses
+    "return a dictionary with key:name of interface and 
+                            value:the MAC adress for each interface"
 
     self subclassResponsibility
 !
 
-getNetworkMACAdressesForIf:ifName
-
-" return the MAC adress for interface ifName
-"
-    self subclassResponsibility
+getNetworkMACAddressesForIf:ifName
+    "return the MAC adress for interface ifName"
+
+    self getNetworkMACAddresses at:ifName
 !
 
 getOSDefine
@@ -4636,7 +4653,7 @@
 !AbstractOperatingSystem class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/AbstractOperatingSystem.st,v 1.92 2003-05-07 14:10:41 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/AbstractOperatingSystem.st,v 1.93 2003-05-15 15:48:21 stefan Exp $'
 ! !
 
 AbstractOperatingSystem initialize!