- From: Florent Batard via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 24 Jul 2008 11:44:30 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2006/unicorn/org/w3/unicorn/tasklist/impl In directory hutz:/tmp/cvs-serv30870/org/w3/unicorn/tasklist/impl Modified Files: IfTypeImpl.java Removed Files: ElseTypeImpl.java Log Message: New generated class from the tasklist schema Index: IfTypeImpl.java =================================================================== RCS file: /sources/public/2006/unicorn/org/w3/unicorn/tasklist/impl/IfTypeImpl.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- IfTypeImpl.java 22 Jul 2008 09:16:46 -0000 1.1 +++ IfTypeImpl.java 24 Jul 2008 11:44:28 -0000 1.2 @@ -80,13 +80,13 @@ /** * Gets the "else" element */ - public org.w3.unicorn.tasklist.ElseType getElse() + public org.w3.unicorn.tasklist.ThenType getElse() { synchronized (monitor()) { check_orphaned(); - org.w3.unicorn.tasklist.ElseType target = null; - target = (org.w3.unicorn.tasklist.ElseType)get_store().find_element_user(ELSE$2, 0); + org.w3.unicorn.tasklist.ThenType target = null; + target = (org.w3.unicorn.tasklist.ThenType)get_store().find_element_user(ELSE$2, 0); if (target == null) { return null; @@ -98,16 +98,16 @@ /** * Sets the "else" element */ - public void setElse(org.w3.unicorn.tasklist.ElseType xelse) + public void setElse(org.w3.unicorn.tasklist.ThenType xelse) { synchronized (monitor()) { check_orphaned(); - org.w3.unicorn.tasklist.ElseType target = null; - target = (org.w3.unicorn.tasklist.ElseType)get_store().find_element_user(ELSE$2, 0); + org.w3.unicorn.tasklist.ThenType target = null; + target = (org.w3.unicorn.tasklist.ThenType)get_store().find_element_user(ELSE$2, 0); if (target == null) { - target = (org.w3.unicorn.tasklist.ElseType)get_store().add_element_user(ELSE$2); + target = (org.w3.unicorn.tasklist.ThenType)get_store().add_element_user(ELSE$2); } target.set(xelse); } @@ -116,13 +116,13 @@ /** * Appends and returns a new empty "else" element */ - public org.w3.unicorn.tasklist.ElseType addNewElse() + public org.w3.unicorn.tasklist.ThenType addNewElse() { synchronized (monitor()) { check_orphaned(); - org.w3.unicorn.tasklist.ElseType target = null; - target = (org.w3.unicorn.tasklist.ElseType)get_store().add_element_user(ELSE$2); + org.w3.unicorn.tasklist.ThenType target = null; + target = (org.w3.unicorn.tasklist.ThenType)get_store().add_element_user(ELSE$2); return target; } } --- ElseTypeImpl.java DELETED ---
Received on Thursday, 24 July 2008 11:45:06 UTC