Is it possible to create a custom token?
Solved! Go to Solution.
Hello Jim,
Yes, you can create custom tokens by implementing IJTXTokenParser interface and registering the dll. The JTX_Token_Parser table has order of the various token parsers. You would manually edit the table and add the token parser information as well the order it should be parsed in. The order of the parser is important, to make sure the information required by your parser exists when it is being called.
Thanks,
Nishi
Hello Jim,
Yes, you can create custom tokens by implementing IJTXTokenParser interface and registering the dll. The JTX_Token_Parser table has order of the various token parsers. You would manually edit the table and add the token parser information as well the order it should be parsed in. The order of the parser is important, to make sure the information required by your parser exists when it is being called.
Thanks,
Nishi
Thanks! There are no JavaDocs, so, I was having a tough time finding anything for custom tokens --