Changeset 340 for trunk/src/model
- Timestamp:
- 11/17/10 21:41:59 (14 years ago)
- Location:
- trunk/src/model
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/model/datamodel.lisp ¶
r337 r340 136 136 :list-super-types 137 137 :in-topicmap 138 :string-starts-with139 138 :get-fragments 140 139 :get-fragment … … 883 882 (defmethod internal-id ((construct TopicMapConstructC)) 884 883 (slot-value construct (find-symbol "OID" 'elephant))) 885 886 887 (defun string-starts-with (str prefix)888 "Checks if string str starts with a given prefix."889 (declare (string str prefix))890 (string= str prefix :start1 0 :end1891 (min (length prefix)892 (length str))))893 884 894 885 -
TabularUnified trunk/src/model/exceptions.lisp ¶
r335 r340 18 18 :missing-argument-error 19 19 :tm-reference-error 20 :bad-type-error)) 20 :bad-type-error 21 :missing-query-string-error 22 :sparql-parser-error)) 21 23 22 24 (in-package :exceptions) 25 26 27 (define-condition missing-query-string-error(error) 28 ((message 29 :initarg :message 30 :accessor message))) 31 32 33 (define-condition sparql-parser-error(error) 34 ((message 35 :initarg :message 36 :accessor message))) 37 23 38 24 39 (define-condition inconsistent-file-error(error)
Note: See TracChangeset
for help on using the changeset viewer.