Joe, I realized afterwards this fix was wrong (I renamed Actionscript*Tag to ActionScript*Tag), because it'd changed the tag name (action.script instead of actionscript), I changed it back now but I'm surprised this didn't make the tests fail. (I had to do this in the first place because there was actually a case issue somewhere, some tag class was named FooBar but was in a file called Foobar.java - a generated one or not, can't remember - I assume you're on windows and thus not impacted by the case sensitivity)
Does anyone have a clue why the tests did not fail, although the tag names were different, thus the test models should not have generated correct things .. ? Cheers, g ---------- Forwarded message ---------- From: greg <[EMAIL PROTECTED]> Date: 25-Jan-2006 12:52 Subject: [xdoclet-plugins-commits] xdoclet-plugins/plugin-actionscript/src/main/java/org/xdoclet/plugin/actionscript/qtags ActionScriptClassTag.java,1.3,1.4 ActionScriptPropertyTag.java,1.3,1.4 To: [email protected] Update of /cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-actionscript/src/main/java/org/xdoclet/plugin/actionscript/qtags In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27595/plugin-actionscript/src/main/java/org/xdoclet/plugin/actionscript/qtags Added Files: ActionScriptClassTag.java ActionScriptPropertyTag.java Log Message: renamed classes (case was wrong) --- NEW FILE: ActionScriptClassTag.java --- /* * Copyright (c) 2003-2005 * XDoclet Team * All rights reserved. */ package org.xdoclet.plugin.actionscript.qtags; /** * Used to specify class related information of ActionScript value object * @qtags.location class */ public interface ActionScriptClassTag extends com.thoughtworks.qdox.model.DocletTag { } --- NEW FILE: ActionScriptPropertyTag.java --- /* * Copyright (c) 2003-2005 * XDoclet Team * All rights reserved. */ package org.xdoclet.plugin.actionscript.qtags; /** * Defines the value object property found by introspection * @qtags.location method */ public interface ActionScriptPropertyTag extends com.thoughtworks.qdox.model.DocletTag { /** * Is the property bindable? Default is false. * * @qtags.allowed-value true * @qtags.allowed-value false */ boolean isBindable(); /** * The ActionScript type of the property, if different from the default. */ String getType(); } ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642 _______________________________________________ xdoclet-plugins-commits mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/xdoclet-plugins-commits ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://sel.as-us.falkag.net/sel?cmd=lnk&kid3432&bid#0486&dat1642 _______________________________________________ xdoclet-plugins-interest mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/xdoclet-plugins-interest
