phonestr.sa
Generated by gen_html_sa_files from ICSI. Contact gomes@icsi.berkeley.edu for details
-------------------------> GNU Sather - sourcefile <-------------------------
-- Copyright (C) 2000 by K Hopper, University of Waikato, New Zealand --
-- This file is part of the GNU Sather library. It is free software; you may --
-- redistribute and/or modify it under the terms of the GNU Library General --
-- Public License (LGPL) as published by the Free Software Foundation; --
-- either version 2 of the license, or (at your option) any later version. --
-- This library is distributed in the hope that it will be useful, but --
-- WITHOUT ANY WARRANTY without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See Doc/LGPL for more details. --
-- The license text is also available from: Free Software Foundation, Inc., --
-- 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA --
--------------> Please email comments to <bug-sather@gnu.org> <--------------
partial class PHONE_STR < $STR, $ANCHORED_FMT
partial class PHONE_STR < $STR, $ANCHORED_FMT is
-- This partial class provides for the conversion of telephone numbers
-- into text strings. Since this is not immutable and 'numbers' are
-- sequences of digits not requiring true conversion there is no
-- corresponding creation from a string group of routines. The common
-- routines have been factored out.
-- Version 1.1 Oct 98. Copyright K Hopper, U of Waikato
-- Development History
-- -------------------
-- Date Who By Detail
-- ---- ------ ------
-- 28 Sep 98 kh Original from BOOL class
-- 6 Oct 98 kh Common routines factored out to ASSEMBLE_STR
include ASSEMBLE_STR ;
str(
access : ACCESS_CODES,
lib : LIBCHARS
) : STR
pre ~void(self)
and ~void(lib)
post ~void(result)
is
-- This routine returns a string representation of the components
-- in accordance with the cultural formatting instructions using the given
-- number format.
return lib.culture.phoning.get(access).format.fmt(self,lib)
end ;
str(
lib : LIBCHARS
) : STR
pre ~void(self)
and ~void(lib)
post ~void(result)
is
-- This routine returns a string representation of the components
-- in accordance with the cultural formatting instructions and using the
-- local number format as default.
return str(ACCESS_CODES::Local,lib)
end ;
end ; -- PHONE_STR