- indexing
- project: "Visual Eiffel"
- revision: "$Revision: 1.1 $"
- copyright: "Copyright (C) 1996-2005 Object Tools Group"
- license: "http://visual-eiffel.com/license"
- cluster: grape
class PROPERTY_FRAME_CONTAINER [G -> PROPERTY_FRAME]
- inherit
-
PROPERTY_FRAME
-
- rename
-
make
as pf_make
-
- redefine
- get_object_class,
- is_a_container
- end
- creation
- make
- feature
-
make (name: STRING)
-
contains_name (s: STRING): INTEGER
-
number_of_items: INTEGER
-
add (pf: G)
-
insert (pf: G; before_pos: INTEGER)
-
insert_before (pf, before: G)
-
insert_after (pf, after: G)
-
delete_at_pos, frozen std_pfc_delete_at_pos (at_pos: INTEGER)
-
delete, frozen std_pfc_delete (a_pf: G)
-
put (pf: G; at_pos: INTEGER)
-
item (at_pos: INTEGER): G
-
wipe
-
get_object_class: STRING
-
is_a_container: BOOLEAN
end -- class PROPERTY_FRAME_CONTAINER