Well, I can't see how it could be returning null, so here is the code for
one of them:
public class SetTagTEI extends TagExtraInfo {
public VariableInfo[] getVariableInfo(TagData data) {
String varName = data.getAttributeString("name");
String varType = data.getAttributeString("type");
if ((varType == null) || (varType.length() == 0)) {
varType = SetTag.DEFAULT_TYPE_ATTR;
}
return new VariableInfo[]{new VariableInfo(varName, varType, true,
VariableInfo.AT_END)};
}
}
where an example taglib call would be:
<mace:set name="someData">This is some data...</mace:set>
With no other tags that have TEI's on the page I have no problems... but as
soon as I get this far the exception occurs:
<mace:set|
So, even if I did want to supply the name value, it won't give me a
chance...
thanks,
adam
"Mike Aizatsky" <[EMAIL PROTECTED]> wrote in message
ae02ka$62f$[EMAIL PROTECTED]">news:ae02ka$62f$[EMAIL PROTECTED]...
> Adam,
>
> Which TEI are you using? It seems that some of them return "null" as var
> name. Is it true?
>
> --
> Best regards,
> Mike Aizatsky.
> ------------------------------
> JetBrains, Inc / IntelliJ Software
> http://www.intellij.com
> "Develop with pleasure!"
>
>
>
>
_______________________________________________
Eap-bugs mailing list
[EMAIL PROTECTED]
http://lists.jetbrains.com/mailman/listinfo/eap-bugs