GraphicsDevice.st
changeset 5561 5d0f94937438
parent 3577 c0282d4e18d6
child 6220 67d0b77833c6
--- a/GraphicsDevice.st	Wed Feb 24 16:06:15 2010 +0100
+++ b/GraphicsDevice.st	Wed Mar 31 15:52:56 2010 +0200
@@ -9,8 +9,6 @@
  other person.  No title to or ownership of the software is
  hereby transferred.
 "
-
-
 "{ Package: 'stx:libview' }"
 
 Object subclass:#GraphicsDevice
@@ -89,6 +87,12 @@
     ^ self deviceType == #pda
 !
 
+isWebServiceDevice
+    "I am not a WebService pseude-device"
+
+    ^ false
+!
+
 removeEventListener:aListener
     "remove a local eventListener (with new protocol - #processEvent:)"
 
@@ -124,7 +128,7 @@
 
 roundTripTime
     "answer the round trip time in milliseconds.
-     May be used to detect slow Device connections.
+     May be used to detect slow device connections.
      Subclasses redefine this. Assume a fast Diplay connection
      and answer 0 here"
 
@@ -138,5 +142,9 @@
 !GraphicsDevice class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/GraphicsDevice.st,v 1.9 2001-12-07 16:16:00 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/GraphicsDevice.st,v 1.10 2010-03-31 13:52:56 stefan Exp $'
+!
+
+version_CVS
+    ^ '$Header: /cvs/stx/stx/libview/GraphicsDevice.st,v 1.10 2010-03-31 13:52:56 stefan Exp $'
 ! !