neo_doxygen: Move the processing of Doxygen’s names in `doxml`.
[nit.git] / contrib / neo_doxygen / src / model / inner_class.nit
index 91ee697..c6e49fc 100644 (file)
@@ -80,8 +80,8 @@ end
 
 # Implements `declare_class`.
 redef class ClassCompound
-       redef fun declare_class(id, full_name, prot) do
-               class_def.declare_class(id, full_name, prot)
+       redef fun declare_class(id, name, prot) do
+               class_def.declare_class(id, name, prot)
        end
 end
 
@@ -103,11 +103,11 @@ redef class ClassDef
        # Parameters:
        #
        # * `id`: `model_id` of the inner class definition.
-       # * `full_name`: qualified name of the inner class definition.
+       # * `name`: name of the inner class definition.
        # * `prot`: visibility (proctection).
-       fun declare_class(id: String, full_name: String, prot: String) do
+       fun declare_class(id: String, name: String, prot: String) do
                var member = new InnerClass(graph, self, id)
-               member.full_name = full_name
+               member.name = name
                member.visibility = prot
                members.add member
                inner_classes.add member