(BeanRepository beanRepository, JspCompilationContext ctxt)
| 103 | private final boolean isTagFile; |
| 104 | |
| 105 | PageInfo(BeanRepository beanRepository, JspCompilationContext ctxt) { |
| 106 | isTagFile = ctxt.isTagFile(); |
| 107 | jspFile = ctxt.getJspFile(); |
| 108 | defaultExtends = ctxt.getOptions().getJspServletBase(); |
| 109 | this.beanRepository = beanRepository; |
| 110 | this.varInfoNames = new HashSet<>(); |
| 111 | this.taglibsMap = new HashMap<>(); |
| 112 | this.jspPrefixMapper = new HashMap<>(); |
| 113 | this.xmlPrefixMapper = new HashMap<>(); |
| 114 | this.nonCustomTagPrefixMap = new HashMap<>(); |
| 115 | this.dependants = new LinkedHashMap<>(); |
| 116 | this.includePrelude = new ArrayList<>(); |
| 117 | this.includeCoda = new ArrayList<>(); |
| 118 | this.pluginDcls = new ArrayList<>(); |
| 119 | this.prefixes = new HashSet<>(); |
| 120 | |
| 121 | // Enter standard imports |
| 122 | this.imports = new ArrayList<>(Constants.STANDARD_IMPORTS); |
| 123 | } |
| 124 | |
| 125 | /** |
| 126 | * Checks if this is a tag file. |
nothing calls this directly
no test coverage detected