# HG changeset patch # User Claus Gittinger # Date 1391626659 -3600 # Node ID 981dd341f7cb44d32e5a4ae21b0098de30068eb0 # Parent 1e6c41043aa44c057c2e743916793c07c42f2724 merged in jv's chenges diff -r 1e6c41043aa4 -r 981dd341f7cb Tools__CodeViewService.st --- a/Tools__CodeViewService.st Wed Feb 05 19:57:37 2014 +0100 +++ b/Tools__CodeViewService.st Wed Feb 05 19:57:39 2014 +0100 @@ -115,6 +115,17 @@ "Created: / 07-03-2010 / 13:58:58 / Jan Vrany " ! +priority + "Answers a priority of the service. Services with higher priority + will get the event notification before ones with lower priority. + Therefore, a lower-priority service might not get the event if high + priority service processes it" + + ^ 5 + + "Created: / 01-02-2012 / 10:28:47 / Jan Vrany " +! + requiredServices "Returns a list of services required for myself to work @@ -424,10 +435,10 @@ !CodeViewService class methodsFor:'documentation'! version_CVS - ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeViewService.st,v 1.15 2013-09-17 14:44:33 vrany Exp $' + ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeViewService.st,v 1.16 2014-02-05 18:57:39 cg Exp $' ! version_SVN - ^ '$Id: Tools__CodeViewService.st,v 1.15 2013-09-17 14:44:33 vrany Exp $' + ^ '$Id: Tools__CodeViewService.st,v 1.16 2014-02-05 18:57:39 cg Exp $' ! !