MCPcopy Index your code
hub / github.com/apache/tomcat / PageInfo

Method PageInfo

java/org/apache/jasper/compiler/PageInfo.java:105–123  ·  view source on GitHub ↗
(BeanRepository beanRepository, JspCompilationContext ctxt)

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls 4

isTagFileMethod · 0.65
getJspServletBaseMethod · 0.65
getOptionsMethod · 0.65
getJspFileMethod · 0.45

Tested by

no test coverage detected