Gobo Eiffel XML Library
Copyright (c) 2001, Andreas Leitner and others
Eiffel Forum License v2 (see forum.txt)
$Date: 2004/07/13 11:48:02 $
$Revision: 1.10 $
-- Is string mode set to ascii only?
-- This means that all strings issued by this source
-- will be of dynamic type STRING.
-- Is string mode set to latin-1 only?
-- This means that all strings issued by this source
-- will be of dynamic type STRING.
-- Is string mode set to polymorphic strings?
-- This means that strings issued by this source will
-- be of dynamic type STRING for ascii, and dynamic
-- type UC_STRING or descendant when characters >127
-- are present in that string.
-- Is other with the same string mode?
-- Set all strings issued by this source to be ascii
-- (all characters <= 127) and be of dynamic type STRING.
-- The source will be in an error state if it has
-- characters that do not fit in a STRING.
-- Set all strings issued by this source to be latin-1
-- (all characters <= 255) and be of dynamic type STRING.
-- The source will be in an error state if it has
-- characters that do not fit in a STRING.
-- Set all strings issued by this source to be either of
-- type UC_STRING or descendant if they contain characters
-- >127 or of dynamic type STRING otherwise.
-- The client receiving these strings will have to
-- be careful about polymorphically unsafe features
-- of STRING, like append_string.
-- Set all strings issued by this source to be of
-- dynamic type UC_STRING or descendant.
-- STRING/UC_STRING mode
String creation policy for a source of unicode strings