examples/STComparator.st
changeset 2353 fa7400d022a0
child 2380 9195eccdcbd9
child 2396 fadc6d7a2f5b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/STComparator.st	Sat Feb 16 19:08:45 2013 +0100
@@ -0,0 +1,56 @@
+"{ Package: 'stx:libjava/examples' }"
+
+Object subclass:#STComparator
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Languages-Java-Examples'
+!
+
+
+!STComparator class methodsFor:'initialization'!
+
+initialize
+
+    self lookupObject: JavaLookup instance
+
+    "Created: / 13-05-2012 / 17:24:06 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+! !
+
+!STComparator methodsFor:'comparing'!
+
+compare: o1 and: o2
+    ^ o1 = o2 ifTrue:[ 
+        0 
+    ] ifFalse: [
+        o1 < o2 ifTrue:[
+            -1
+        ] ifFalse:[
+            1
+        ]            
+    ]
+
+    "
+        STComparator new compare: 1 and: 1
+    "
+
+    "Created: / 21-08-2012 / 10:44:36 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+! !
+
+!STComparator class methodsFor:'documentation'!
+
+version_CVS
+    ^ '$Header: /cvs/stx/stx/libjava/examples/STComparator.st,v 1.1 2013-02-16 18:08:33 vrany Exp $'
+!
+
+version_HG
+
+    ^ '$Changeset: <not expanded> $'
+!
+
+version_SVN
+    ^ '$Id: STComparator.st,v 1.1 2013-02-16 18:08:33 vrany Exp $'
+! !
+
+
+STComparator initialize!