HierarchicalURI.st
changeset 1962 b2044230fdc4
parent 1520 058f3532e30a
child 1992 be159b5be71f
--- a/HierarchicalURI.st	Wed Apr 16 20:33:00 2008 +0200
+++ b/HierarchicalURI.st	Sat Apr 19 15:58:16 2008 +0200
@@ -9,7 +9,6 @@
  other person.  No title to or ownership of the software is
  hereby transferred.
 "
-
 "{ Package: 'stx:libbasic2' }"
 
 URI subclass:#HierarchicalURI
@@ -548,6 +547,13 @@
 
 !HierarchicalURI methodsFor:'resolution'!
 
+/ aString
+    "concatenate aString to my path.
+     Same as #construct:, but simpler to use"
+
+    ^ self construct:aString.
+!
+
 addComponent:aString
     "concatenate aString to my path"
 
@@ -591,5 +597,5 @@
 !HierarchicalURI class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/HierarchicalURI.st,v 1.13 2005-02-02 08:36:06 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/HierarchicalURI.st,v 1.14 2008-04-19 13:58:16 stefan Exp $'
 ! !