note description: "Objects that hold information about an action% %sequence for an object." legal: "See notice at end of class." status: "See notice at end of class." author: "" date: "$Date$" revision: "$Revision$" class GB_ACTION_SEQUENCE_INFO --| FIXME --| note that `type' is redundent as it can be looked up with `name' and `class_name'. However, it should --| be a lot quicker and easier to work with so we do not look it up at the moment. create make_with_details feature {NONE} -- Initialization make_with_details (a_name, a_class_name, a_type, a_feature_name: STRING) -- Create `Current', assign `a_name' to `name', `a_class_name' to `class_name', -- `a_type' to `type' and `a_feature_name' to `feature_name'. require a_name_not_empty: a_name /= Void and not a_name.is_empty a_class_name_not_empty: a_class_name /= Void and not a_class_name.is_empty a_type_not_empty: a_type /= Void and not a_type.is_empty a_feature_name_not_empty: a_feature_name /= Void and not a_feature_name.is_empty do name := a_name class_name := a_class_name type := a_type feature_name := a_feature_name end feature -- Access name: STRING -- Name of action sequence. -- i.e. select_actions. class_name: STRING -- Class containing action sequence. -- i.e. EV_BUTTON_ACTION_SEQUENCES type: STRING -- Type of action sequence. -- i.e. EV_NOTIFY_ACTION_SEQUENCE feature_name: STRING; -- Name selected for associated feature to -- be generated. note copyright: "Copyright (c) 1984-2006, Eiffel Software" license: "GPL version 2 (see http://www.eiffel.com/licensing/gpl.txt)" licensing_options: "http://www.eiffel.com/licensing" copying: "[ This file is part of Eiffel Software's Eiffel Development Environment. Eiffel Software's Eiffel Development Environment is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2 of the License (available at the URL listed under "license" above). Eiffel Software's Eiffel Development Environment is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Eiffel Software's Eiffel Development Environment; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA ]" source: "[ Eiffel Software 356 Storke Road, 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 GB_ACTION_SEQUENCE_INFO