Automatic generation produced by ISE Eiffel

Classes Clusters Cluster hierarchy Chart Relations Flat contracts Go to:
note description: "Constants for NLS locale information" legal: "See notice at end of class." status: "See notice at end of class." date: "$Date: 2009-02-25 04:39:37 -0900 (Wed, 25 Feb 2009) $" revision: "$Revision: 77324 $" class interface I18N_NLS_LC_CTYPE_CONSTANTS create default_create -- Process instances of classes with no creation clause. -- (Default: do nothing.) -- (from ANY) feature -- Access generating_type: TYPE [detachable I18N_NLS_LC_CTYPE_CONSTANTS] -- Type of current object -- (type of which it is a direct instance) -- (from ANY) ensure -- from ANY generating_type_not_void: Result /= Void generator: STRING_8 -- Name of current object's generating class -- (base class of the type of which it is a direct instance) -- (from ANY) ensure -- from ANY generator_not_void: Result /= Void generator_not_empty: not Result.is_empty feature -- Comparison frozen deep_equal (a: detachable ANY; b: like arg #1): BOOLEAN -- Are a and b either both void -- or attached to isomorphic object structures? -- (from ANY) ensure -- from ANY instance_free: class shallow_implies_deep: standard_equal (a, b) implies Result both_or_none_void: (a = Void) implies (Result = (b = Void)) same_type: (Result and (a /= Void)) implies (b /= Void and then a.same_type (b)) symmetric: Result implies deep_equal (b, a) frozen equal (a: detachable ANY; b: like arg #1): BOOLEAN -- Are a and b either both void or attached -- to objects considered equal? -- (from ANY) ensure -- from ANY instance_free: class definition: Result = (a = Void and b = Void) or else ((a /= Void and b /= Void) and then a.is_equal (b)) frozen is_deep_equal alias "≡≡≡" (other: I18N_NLS_LC_CTYPE_CONSTANTS): BOOLEAN -- Are Current and other attached to isomorphic object structures? -- (from ANY) require -- from ANY other_not_void: other /= Void ensure -- from ANY shallow_implies_deep: standard_is_equal (other) implies Result same_type: Result implies same_type (other) symmetric: Result implies other.is_deep_equal (Current) is_equal (other: I18N_NLS_LC_CTYPE_CONSTANTS): BOOLEAN -- Is other attached to an object considered -- equal to current object? -- (from ANY) require -- from ANY other_not_void: other /= Void ensure -- from ANY symmetric: Result implies other ~ Current consistent: standard_is_equal (other) implies Result frozen standard_equal (a: detachable ANY; b: like arg #1): BOOLEAN -- Are a and b either both void or attached to -- field-by-field identical objects of the same type? -- Always uses default object comparison criterion. -- (from ANY) ensure -- from ANY instance_free: class definition: Result = (a = Void and b = Void) or else ((a /= Void and b /= Void) and then a.standard_is_equal (b)) frozen standard_is_equal alias "" (other: I18N_NLS_LC_CTYPE_CONSTANTS): BOOLEAN -- Is other attached to an object of the same type -- as current object, and field-by-field identical to it? -- (from ANY) require -- from ANY other_not_void: other /= Void ensure -- from ANY same_type: Result implies same_type (other) symmetric: Result implies other.standard_is_equal (Current) feature -- Status report conforms_to (other: ANY): BOOLEAN -- Does type of current object conform to type -- of other (as per Eiffel: The Language, chapter 13)? -- (from ANY) require -- from ANY other_not_void: other /= Void same_type (other: ANY): BOOLEAN -- Is type of current object identical to type of other? -- (from ANY) require -- from ANY other_not_void: other /= Void ensure -- from ANY definition: Result = (conforms_to (other) and other.conforms_to (Current)) feature -- Duplication copy (other: I18N_NLS_LC_CTYPE_CONSTANTS) -- Update current object using fields of object attached -- to other, so as to yield equal objects. -- (from ANY) require -- from ANY other_not_void: other /= Void type_identity: same_type (other) ensure -- from ANY is_equal: Current ~ other frozen deep_copy (other: I18N_NLS_LC_CTYPE_CONSTANTS) -- Effect equivalent to that of: -- `copy` (other . `deep_twin`) -- (from ANY) require -- from ANY other_not_void: other /= Void ensure -- from ANY deep_equal: deep_equal (Current, other) frozen deep_twin: I18N_NLS_LC_CTYPE_CONSTANTS -- New object structure recursively duplicated from Current. -- (from ANY) ensure -- from ANY deep_twin_not_void: Result /= Void deep_equal: deep_equal (Current, Result) frozen standard_copy (other: I18N_NLS_LC_CTYPE_CONSTANTS) -- Copy every field of other onto corresponding field -- of current object. -- (from ANY) require -- from ANY other_not_void: other /= Void type_identity: same_type (other) ensure -- from ANY is_standard_equal: standard_is_equal (other) frozen standard_twin: I18N_NLS_LC_CTYPE_CONSTANTS -- New object field-by-field identical to other. -- Always uses default copying semantics. -- (from ANY) ensure -- from ANY standard_twin_not_void: Result /= Void equal: standard_equal (Result, Current) frozen twin: I18N_NLS_LC_CTYPE_CONSTANTS -- New object equal to Current -- `twin` calls `copy`; to change copying/twinning semantics, redefine `copy`. -- (from ANY) ensure -- from ANY twin_not_void: Result /= Void is_equal: Result ~ Current feature -- Basic operations frozen default: detachable I18N_NLS_LC_CTYPE_CONSTANTS -- Default value of object's type -- (from ANY) frozen default_pointer: POINTER -- Default value of type POINTER -- (Avoid the need to write p.`default` for -- some p of type POINTER.) -- (from ANY) ensure -- from ANY instance_free: class default_rescue -- Process exception for routines with no Rescue clause. -- (Default: do nothing.) -- (from ANY) frozen do_nothing -- Execute a null action. -- (from ANY) ensure -- from ANY instance_free: class feature -- LC_CTYPE constants (see winnnls.h as reference) -- Note: Constants information can be found under -- http://msdn.microsoft.com/en-us/library/dd319079(VS.85).aspx locale_icalendartype: INTEGER_32 -- type of calendar specifier locale_icentury: INTEGER_32 -- century format specifier (short date) locale_icountry: INTEGER_32 -- country code locale_icurrdigits: INTEGER_32 -- # local monetary digits locale_icurrency: INTEGER_32 -- positive currency mode locale_idate: INTEGER_32 -- short date format ordering locale_idaylzero: INTEGER_32 -- leading zeros in day field (short date) locale_idefaultansicodepage: INTEGER_32 -- default ansi code page locale_idefaultcodepage: INTEGER_32 -- default oem code page locale_idefaultcountry: INTEGER_32 -- default country code locale_idefaultlanguage: INTEGER_32 -- default language id locale_idefaultmaccodepage: INTEGER_32 -- default mac code page locale_idigits: INTEGER_32 -- number of fractional digits locale_ifirstdayofweek: INTEGER_32 -- first day of week specifier locale_ifirstweekofyear: INTEGER_32 -- first week of year specifier locale_iintlcurrdigits: INTEGER_32 -- # intl monetary digits locale_ilanguage: INTEGER_32 -- language id locale_ildate: INTEGER_32 -- long date format ordering locale_ilzero: INTEGER_32 -- leading zeros for decimal locale_imeasure: INTEGER_32 -- 0 = metric, 1 = US locale_imonlzero: INTEGER_32 -- leading zeros in month field (short date) locale_inegcurr: INTEGER_32 -- negative currency mode locale_inegnumber: INTEGER_32 -- negative number mode locale_inegsepbyspace: INTEGER_32 -- mon sym sep by space from neg amt locale_inegsignposn: INTEGER_32 -- negative sign position locale_inegsymprecedes: INTEGER_32 -- mon sym precedes neg amt locale_ioptionalcalendar: INTEGER_32 -- additional calendar types specifier locale_ipossepbyspace: INTEGER_32 -- mon sym sep by space from pos amt locale_ipossignposn: INTEGER_32 -- positive sign position locale_ipossymprecedes: INTEGER_32 -- mon sym precedes pos amt locale_itime: INTEGER_32 -- time format specifier locale_itimemarkposn: INTEGER_32 -- time marker position locale_itlzero: INTEGER_32 -- leading zeros in time field locale_s1159: INTEGER_32 -- AM designator locale_s2359: INTEGER_32 -- PM designator locale_sabbrevctryname: INTEGER_32 -- abbreviated country name locale_sabbrevdayname1: INTEGER_32 -- abbreviated name for Monday locale_sabbrevdayname2: INTEGER_32 -- abbreviated name for Tuesday locale_sabbrevdayname3: INTEGER_32 -- abbreviated name for Wednesday locale_sabbrevdayname4: INTEGER_32 -- abbreviated name for Thursday locale_sabbrevdayname5: INTEGER_32 -- abbreviated name for Friday locale_sabbrevdayname6: INTEGER_32 -- abbreviated name for Saturday locale_sabbrevdayname7: INTEGER_32 -- abbreviated name for Sunday locale_sabbrevlangname: INTEGER_32 -- abbreviated language name locale_sabbrevmonthname1: INTEGER_32 -- abbreviated name for January locale_sabbrevmonthname10: INTEGER_32 -- abbreviated name for October locale_sabbrevmonthname11: INTEGER_32 -- abbreviated name for November locale_sabbrevmonthname12: INTEGER_32 -- abbreviated name for December locale_sabbrevmonthname13: INTEGER_32 -- abbreviated name for 13th month (if exists) locale_sabbrevmonthname2: INTEGER_32 -- abbreviated name for February locale_sabbrevmonthname3: INTEGER_32 -- abbreviated name for March locale_sabbrevmonthname4: INTEGER_32 -- abbreviated name for April locale_sabbrevmonthname5: INTEGER_32 -- abbreviated name for May locale_sabbrevmonthname6: INTEGER_32 -- abbreviated name for June locale_sabbrevmonthname7: INTEGER_32 -- abbreviated name for July locale_sabbrevmonthname8: INTEGER_32 -- abbreviated name for August locale_sabbrevmonthname9: INTEGER_32 -- abbreviated name for September locale_scountry: INTEGER_32 -- localized name of country locale_scurrency: INTEGER_32 -- local monetary symbol locale_sdate: INTEGER_32 -- date separator locale_sdayname1: INTEGER_32 -- long name for Monday locale_sdayname2: INTEGER_32 -- long name for Tuesday locale_sdayname3: INTEGER_32 -- long name for Wednesday locale_sdayname4: INTEGER_32 -- long name for Thursday locale_sdayname5: INTEGER_32 -- long name for Friday locale_sdayname6: INTEGER_32 -- long name for Saturday locale_sdayname7: INTEGER_32 -- long name for Sunday locale_sdecimal: INTEGER_32 -- decimal separator locale_sengcountry: INTEGER_32 -- English name of country locale_senglanguage: INTEGER_32 -- English name of language locale_sgrouping: INTEGER_32 -- digit grouping locale_sintlsymbol: INTEGER_32 -- intl monetary symbol locale_siso3166ctryname: INTEGER_32 -- ISO abbreviated country name locale_siso639langname: INTEGER_32 -- ISO abbreviated language name locale_slanguage: INTEGER_32 -- localized name of language locale_slist: INTEGER_32 -- list item separator locale_slongdate: INTEGER_32 -- long date format string locale_smondecimalsep: INTEGER_32 -- monetary decimal separator locale_smongrouping: INTEGER_32 -- monetary grouping locale_smonthname1: INTEGER_32 -- long name for January locale_smonthname10: INTEGER_32 -- long name for October locale_smonthname11: INTEGER_32 -- long name for November locale_smonthname12: INTEGER_32 -- long name for December locale_smonthname13: INTEGER_32 -- long name for 13th month (if exists) locale_smonthname2: INTEGER_32 -- long name for February locale_smonthname3: INTEGER_32 -- long name for March locale_smonthname4: INTEGER_32 -- long name for April locale_smonthname5: INTEGER_32 -- long name for May locale_smonthname6: INTEGER_32 -- long name for June locale_smonthname7: INTEGER_32 -- long name for July locale_smonthname8: INTEGER_32 -- long name for August locale_smonthname9: INTEGER_32 -- long name for September locale_smonthousandsep: INTEGER_32 -- monetary thousand separator locale_snativectryname: INTEGER_32 -- native name of country locale_snativedigits: INTEGER_32 -- native ascii 0-9 locale_snativelangname: INTEGER_32 -- native name of language locale_snegativesign: INTEGER_32 -- negative sign locale_spositivesign: INTEGER_32 -- positive sign locale_sshortdate: INTEGER_32 -- short date format string locale_sthousand: INTEGER_32 -- thousand separator locale_stime: INTEGER_32 -- time separator locale_stimeformat: INTEGER_32 -- time format string feature -- Output Io: STD_FILES -- Handle to standard file setup -- (from ANY) ensure -- from ANY instance_free: class io_not_void: Result /= Void out: STRING_8 -- New string containing terse printable representation -- of current object -- (from ANY) ensure -- from ANY out_not_void: Result /= Void print (o: detachable ANY) -- Write terse external representation of o -- on standard output. -- (from ANY) ensure -- from ANY instance_free: class frozen tagged_out: STRING_8 -- New string containing terse printable representation -- of current object -- (from ANY) ensure -- from ANY tagged_out_not_void: Result /= Void feature -- Platform Operating_environment: OPERATING_ENVIRONMENT -- Objects available from the operating system -- (from ANY) ensure -- from ANY instance_free: class operating_environment_not_void: Result /= Void invariant -- from ANY reflexive_equality: standard_is_equal (Current) reflexive_conformance: conforms_to (Current) note library: "Internationalization library" copyright: "Copyright (c) 1984-2009, Eiffel Software and others" license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)" source: "[ Eiffel Software 5949 Hollister Ave., Goleta, CA 93117 USA Telephone 805-685-1006, Fax 805-685-6869 Website http://www.eiffel.com Customer support http://support.eiffel.com ]" end -- class I18N_NLS_LC_CTYPE_CONSTANTS
Classes Clusters Cluster hierarchy Chart Relations Flat contracts Go to:

-- Generated by Eiffel Studio --
For more details: eiffel.org