- End - Class in PrologProductions
-
- End() - Constructor for class PrologProductions.End
-
- End(LineToParse) - Constructor for class PrologProductions.End
-
- endsWith(String[], String...) - Static method in class MDELite6.Utils
-
given a parseFileName array ["x","y","z","q","r"],
endsWith returns true if its 2nd argument matches the postfix
of the input array; ex args = ["q","r"] will return true;
see UtilsTest for examples
- equals(Column) - Method in class PrologDB.Column
-
returns true if 'this' column equals the given otherColumn.
- equals(DBSchema) - Method in class PrologDB.DBSchema
-
two DBSchemas are equal iff (a) they have the same name, (b) they have
the same set of table schemas, and (c) they have the same set of
subtableschemas; if so true is returned.
- equals(SubTableSchema) - Method in class PrologDB.SubTableSchema
-
two SubTableSchema objects are equal iff they both reference the same
superTable, and this.subtables \subsetof ts.subtables, and vice versa
- equals(TableSchema) - Method in class PrologDB.TableSchema
-
returns true if 'this' schema equals otherSchema, false otherwise
- equalsEH(DBSchema) - Method in class PrologDB.DBSchema
-
two DBSchemas are equal iff (a) they have the same name, (b) they have
the same set of table schemas, and (c) they have the same set of sub
table schemas; if so this method returns.
- equalsEH(SubTableSchema) - Method in class PrologDB.SubTableSchema
-
two SubTableSchema objects are equal iff they both reference the same
superTable, and this.subtables \subsetof ts.subtables, and vice versa
if unequal, Error is thrown with a reason
- equalsEH(TableSchema) - Method in class PrologDB.TableSchema
-
asserts if 'this' schema == otherSchema If false, Error is thrown
- Error - Exception in MDELite6
-
standard runtime Exception thrown in PrologDB
- Error(String) - Constructor for exception MDELite6.Error
-
Stop PrologDB execution with error message msg
- errorFile - Static variable in class MDELite6.Constants
-
name of error file where non-conformance errors are posted
- ErrorReport - Class in PrologDB
-
ErrorReport is a standard object to collect errors in evaluating
database constraints; it remembers a list of errors, and when its report
is printed, it throws Error if errors are reported
- ErrorReport() - Constructor for class PrologDB.ErrorReport
-
returns a fresh ErrorReport object
- executeCommandLine(String...) - Static method in class MDELite6.ExeUtils
-
spawns a process for the given command line and waits for it to finish
- ExeUtils - Class in MDELite6
-
a set of Java utilities to run command-line arguments
- ExeUtils() - Constructor for class MDELite6.ExeUtils
-