indexing
     description: "Objects that stores default messages."
     date: "$Date$"
     revision: "$Revision$"

deferred class interface
     DV_MESSAGES

feature --

     enter_field_value (type, name: STRING): STRING
                 -- Value of field with name and type not valid message.

     retrieve_field_value (type, name: STRING): STRING
                 -- Value of field with name and type retrieval failure message.

     type_not_recognized (name: STRING): STRING
                 -- Type of field with name not recognized message.

     wrong_date_format (name: STRING): STRING
                 -- Wrong date type format for field with name message.

     wrong_datetime_format (name: STRING): STRING
                 -- Wrong date & time type format for field with name message.
     
feature -- Combo box

     empty_combo_item_label: STRING
                 -- Label for an empty combo item value.
     
feature -- Creation

     creation_confirmation (table_name: STRING): STRING
                 -- Table row creation on table_name confirmation message.

     creation_done (table_name: STRING): STRING
                 -- Table row creation on table_name successful message.
     
feature -- Deletion

     deletion_confirmation (table_name: STRING): STRING
                 -- Table row deletion on table_name confirmation message.

     deletion_done (table_name: STRING): STRING
                 -- Table row deletion on table_name successful message.
     
feature -- Selection

     tablerows_selected (count: INTEGER): STRING
                 -- Database selection carried out message. count table rows
                 -- have been selected.
     
feature -- Update

     update_done (table_name: STRING): STRING
                 -- Table row update on table_name successful message.
     
feature -- Window to select foreign key values for creation

     selection_window_title (table_name: STRING): STRING
                 -- Selection window title.

     undetermined_table_name: STRING
                 -- Undetermined table name (use for selection_window_title).
     
invariant

           -- from ANY
     reflexive_equality: standard_is_equal (Current)
     reflexive_conformance: conforms_to (Current)

indexing
     library: "[
EiffelStore: library of reusable components for ISE Eiffel.
     ]"
     status: "[
Copyright (C) 1986-2001 Interactive Software Engineering Inc.
All rights reserved. Duplication and distribution prohibited.
May be used only with ISE Eiffel, under terms of user license.
Contact ISE for any other use.
     ]"
     source: "[
Interactive Software Engineering Inc.
ISE Building
360 Storke Road, Goleta, CA 93117 USA
Telephone 805-685-1006, Fax 805-685-6869
Electronic mail <info@eiffel.com>
Customer support http://support.eiffel.com
     ]"
     info: "[
For latest info see award-winning pages: http://eiffel.com
     ]"

end -- class DV_MESSAGES