View | Details | Raw Unified | Return to bug 54012
Collapse All | Expand All

(-)org/apache/jasper/compiler/PageInfo.java (-1 / +7 lines)
Lines 99-106 Link Here
99
    // JSP 2.2
99
    // JSP 2.2
100
    private boolean errorOnUndeclaredNamepsace = false;
100
    private boolean errorOnUndeclaredNamepsace = false;
101
101
102
    PageInfo(BeanRepository beanRepository, String jspFile) {
102
    private boolean isTagFile = false;
103
103
104
    PageInfo(BeanRepository beanRepository, String jspFile, boolean isTagFile) {
105
        this.isTagFile = isTagFile;
104
        this.jspFile = jspFile;
106
        this.jspFile = jspFile;
105
        this.beanRepository = beanRepository;
107
        this.beanRepository = beanRepository;
106
        this.varInfoNames = new HashSet<String>();
108
        this.varInfoNames = new HashSet<String>();
Lines 119-124 Link Here
119
        imports.addAll(Constants.STANDARD_IMPORTS);
121
        imports.addAll(Constants.STANDARD_IMPORTS);
120
    }
122
    }
121
123
124
    public boolean isTagFile() {
125
        return isTagFile;
126
    }
127
122
    /**
128
    /**
123
     * Check if the plugin ID has been previously declared.  Make a not
129
     * Check if the plugin ID has been previously declared.  Make a not
124
     * that this Id is now declared.
130
     * that this Id is now declared.

Return to bug 54012