indexing description: "Objects that represent a value in the SOAP Data Model." project: "Project Goanna " library: "SOAP" date: "$Date$" revision: "$Revision$" author: "Colin Adams " copyright: "Copyright (c) 2005 Colin Adams and others" license: "Eiffel Forum License v2 (see forum.txt)." deferred class GOA_SOAP_SCALAR_VALUE inherit GOA_SOAP_VALUE redefine is_scalar, as_scalar end feature -- Access is_scalar: BOOLEAN is -- Is `Current' a scalar value? do Result := True end feature -- Conversion as_scalar: GOA_SOAP_SCALAR_VALUE is -- `Current' as a scalar value do Reuslt := Current end invariant end -- class GOA_SOAP_SCALAR_VALUE