Mantis - Resin
|
|||||
Viewing Issue Advanced Details | |||||
|
|||||
ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
1479 | minor | always | 11-28-06 19:03 | 11-29-06 09:39 | |
|
|||||
Reporter: | stevejf7 | Platform: | |||
Assigned To: | ferg | OS: | |||
Priority: | normal | OS Version: | |||
Status: | closed | Product Version: | 3.0.21 | ||
Product Build: | Resolution: | fixed | |||
Projection: | none | ||||
ETA: | none | Fixed in Version: | 3.0.23 | ||
|
|||||
Summary: | 0001479: .tag files don't handle inner classes | ||||
Description: |
I have a .tag file like the following: <%@ tag body-content="empty" %> <%@ tag import="adf.Test, adf.Test.InnerClass" %> <%@ attribute name="input" type="adf.Test.InnerClass" %> <%@ attribute name="var" rtexprvalue="false" required="true" %> <%@ variable name-from-attribute="var" alias="component" variable-class="adf.Test.InnerClass" scope="AT_END" %> <% Test test = new Test(); Test.InnerClass innerClass = test.getInnerClass(); jspContext.setAttribute("component", innerClass); %> this line doesn't seem to work in 3.0.21 or 3.0.19: <%@ attribute name="input" type="adf.Test.InnerClass" %> this line, however, works in 3.0.19 but not 3.0.21: <%@ variable name-from-attribute="var" alias="component" variable-class="adf.Test.InnerClass" scope="AT_END" %> Any thoughts on why this might be? |
||||
Steps To Reproduce: | |||||
Additional Information: |
package adf; public class Test { public InnerClass getInnerClass() { return new InnerClass(); } public static class InnerClass { public String toString() { return "Hello WORLD"; } } } |
||||
Relationships | |||||
Attached Files: |
Notes | |||||
|
|||||
|
|