home *** CD-ROM | disk | FTP | other *** search
- #---------------------------------------------------------------------------
- #
- # Copyright (c) 1994-1995 by Cadre Technologies Inc.
- #
- # This software is furnished under a license and may be used only in
- # accordance with the terms of such license and with the inclusion of
- # the above copyright notice. This software or any other copies thereof
- # may not be provided or otherwise made available to any other person.
- # No title to and ownership of the software is hereby transferred.
- #
- # The information in this software is subject to change without notice
- # and should not be construed as a commitment by Cadre Technologies Inc.
- #
- #---------------------------------------------------------------------------
- #
- # File : @(#)chk_db_fn.tcl 2.1
- # Author : edri
- # Original date : 11-10-94
- # Description : Check functions for "check", database dependent
- #
- #---------------------------------------------------------------------------
- #
-
- #
- # Check functions for db objects
- #
- proc db_link_class::check {class diagram} {
- link_class::check $class $diagram
- }
-
- proc db_class::check {class diagram} {
- class::check $class $diagram
- }
-
- proc db_data_attrib::check {attrib class} {
- data_attrib::check $attrib $class
- }
-
- proc db_assoc_attrib::check {attrib class} {
- assoc_attrib::check $attrib $class
- }
-
- proc db_qual_assoc_attrib::check {attrib class} {
- qual_assoc_attrib::check $attrib $class
- }
-
- proc db_link_attrib::check {attrib class} {
- link_attrib::check $attrib $class
- }
-
- proc db_qual_link_attrib::check {attrib class} {
- qual_link_attrib::check $attrib $class
- }
-
- proc db_rv_link_attrib::check {attrib class} {
- rv_link_attrib::check $attrib $class
- }
-