You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xap-commits@incubator.apache.org by mt...@apache.org on 2006/07/18 17:43:55 UTC

svn commit: r423151 - /incubator/xap/trunk/src/xap/xml/dom/events/ChangeRejectedExceptionRes.js

Author: mturyn
Date: Tue Jul 18 10:43:54 2006
New Revision: 423151

URL: http://svn.apache.org/viewvc?rev=423151&view=rev
Log:
A few random classes needed further rescoping.

Modified:
    incubator/xap/trunk/src/xap/xml/dom/events/ChangeRejectedExceptionRes.js

Modified: incubator/xap/trunk/src/xap/xml/dom/events/ChangeRejectedExceptionRes.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/xml/dom/events/ChangeRejectedExceptionRes.js?rev=423151&r1=423150&r2=423151&view=diff
==============================================================================
--- incubator/xap/trunk/src/xap/xml/dom/events/ChangeRejectedExceptionRes.js (original)
+++ incubator/xap/trunk/src/xap/xml/dom/events/ChangeRejectedExceptionRes.js Tue Jul 18 10:43:54 2006
@@ -23,8 +23,8 @@
  */
 xap.xml.dom.events.ChangeRejectedExceptionRes = function() {
 	this.messages = new Object();
-	this.messages[ChangeRejectedException.CHANGE_ATTRIBUTE_TO_NULL_MSGID] = "One of the xap.xml.dom.events.AttributeChangeListeners set the attribute value to null which is not allowed.";
-	this.messages[ChangeRejectedException.CHANGE_CHILD_TO_NULL_MSGID] = "One of the xap.xml.dom.events.StructureChangeListeners set the child to null which cannot be placed in the DOM.";
-	this.messages[ChangeRejectedException.REJECTED_WITH_REASON_MSGID] = "The change was rejected because {0}";
-	this.messages[ChangeRejectedException.ROOT_NODE_CHANGE_DISALLOWED_MSGID] = "This document does not support setting the root node.";
+	this.messages[xap.xml.dom.events.ChangeRejectedException.CHANGE_ATTRIBUTE_TO_NULL_MSGID] = "One of the xap.xml.dom.events.AttributeChangeListeners set the attribute value to null which is not allowed.";
+	this.messages[xap.xml.dom.events.ChangeRejectedException.CHANGE_CHILD_TO_NULL_MSGID] = "One of the xap.xml.dom.events.StructureChangeListeners set the child to null which cannot be placed in the DOM.";
+	this.messages[xap.xml.dom.events.ChangeRejectedException.REJECTED_WITH_REASON_MSGID] = "The change was rejected because {0}";
+	this.messages[xap.xml.dom.events.ChangeRejectedException.ROOT_NODE_CHANGE_DISALLOWED_MSGID] = "This document does not support setting the root node.";
 }