Author:halw

Date:2011-03-06T22:33:31.000000Z


git-svn-id: https://svn.eiffel.com/eiffel-org/trunk@826 abb3cda0-5349-4a8f-a601-0c33ac3a8c38
This commit is contained in:
halw
2011-03-06 22:54:38 +00:00
parent 750a36fa7b
commit f6be26a40c
3 changed files with 28 additions and 15 deletions

View File

@@ -10,7 +10,7 @@ void eif_disable_visible_exception ();
</code>
==Description==
The <code lang="text">eif_enable_visble_exception</code> routine enables the visible exception, while [[eif_disable_visible_exception]] disables it. These routines can be used for debugging purpose. A visible exception is raised when the user tries to access to an Eiffel attribute or a Eiffel routine address which is not visible.
The [[eif_enable_visible_exception]] routine enables the visible exception, while [[eif_disable_visible_exception]] disables it. These routines can be used for debugging purpose. A visible exception is raised when the user tries to access to an Eiffel attribute or a Eiffel routine address which is not visible.
The visible exception is disabled by default.

View File

@@ -10,7 +10,7 @@ void eif_disable_visible_exception ();
</code>
==Description==
The <code lang="text">eif_enable_visble_exception</code> routine enables the visible exception, while [[eif_disable_visible_exception]] disables it. These routines can be used for debugging purpose. A visible exception is raised when the user tries to access to an Eiffel attribute or a Eiffel routine address which is not visible.
The [[eif_enable_visible_exception]] routine enables the visible exception, while [[eif_disable_visible_exception]] disables it. These routines can be used for debugging purpose. A visible exception is raised when the user tries to access to an Eiffel attribute or a Eiffel routine address which is not visible.
The visible exception is disabled by default.

View File

@@ -1,22 +1,35 @@
[[Property:title|eif_name]]
[[Property:weight|-2]]
[[Property:uuid|2921b2ef-1f59-cd26-df50-5cb946eae84c]]
==SYNOPSYS==
<code>
'''#include "eif_cecil.h"
==Synopsis==
<code lang="text">
#include "eif_cecil.h"
char *eif_name (EIF_TYPE_ID '''''tid''''');'''</code>
char *eif_name (EIF_TYPE_ID tid);
</code>
==Description==
The <code lang="text">eif_name</code> function returns the name of the class corresponding to <code lang="text">tid</code>.
==Return value==
A statically allocated C string which is the name of the class. If <code lang="text">tid</code> is invalid, it returns <code lang="text">NULL</code>.
==Conformance==
==DESCRIPTION==
The '''eif_name()''' function returns the name of the class corresponding to ''tid''.
==RETURN VALUE==
A statically allocated C string which is the name of the class. If ''tid'' is invalid, it returns NULL.
==CONFORMANCE==
ISE Eiffel 4.4 and later.
==COMPATIBILITY==
'''eif_name()''' is equivalent to '''eif_name_by_tid()'''.
==SEE ALSO==
'''eif_type'''(1) , '''eif_type_by_reference'''(1), '''eif_type_id'''(1).
==Compatibility==
<code lang="text">eif_name</code> is equivalent to <code lang="text">eif_name_by_tid</code>.
{{SeeAlso| <br/>
[[eif_type]] <br/>
[[eif_type_by_reference]] <br/>
[[eif_type_id]] }}