@@ -12,54 +12,6 @@ class FacesContext extends RefType {
12
12
}
13
13
}
14
14
15
- /**
16
- * The JSF class `ExternalContext` allowing JavaServer Faces based applications to run in
17
- * either a Servlet or a Portlet environment.
18
- */
19
- class ExternalContext extends RefType {
20
- ExternalContext ( ) {
21
- this .hasQualifiedName ( [ "javax.faces.context" , "jakarta.faces.context" ] , "ExternalContext" )
22
- }
23
- }
24
-
25
- /**
26
- * The base class type `UIComponent` for all user interface components in JavaServer Faces.
27
- */
28
- class FacesUIComponent extends RefType {
29
- FacesUIComponent ( ) {
30
- this .hasQualifiedName ( [ "javax.faces.component" , "jakarta.faces.component" ] , "UIComponent" )
31
- }
32
- }
33
-
34
- /**
35
- * The JSF class `Renderer` that converts internal representation of `UIComponent` into the output
36
- * stream (or writer) associated with the response we are creating for a particular request.
37
- */
38
- class FacesRenderer extends RefType {
39
- FacesRenderer ( ) {
40
- this .hasQualifiedName ( [ "javax.faces.render" , "jakarta.faces.render" ] , "Renderer" )
41
- }
42
- }
43
-
44
- /**
45
- * The JSF class `ResponseWriter` that outputs and producing elements and attributes for markup
46
- * languages like HTML and XML.
47
- */
48
- class FacesResponseWriter extends RefType {
49
- FacesResponseWriter ( ) {
50
- this .hasQualifiedName ( [ "javax.faces.context" , "jakarta.faces.context" ] , "ResponseWriter" )
51
- }
52
- }
53
-
54
- /**
55
- * The class `ResponseStream` that produces binary output.
56
- */
57
- class FacesResponseStream extends RefType {
58
- FacesResponseStream ( ) {
59
- this .hasQualifiedName ( [ "javax.faces.context" , "jakarta.faces.context" ] , "ResponseStream" )
60
- }
61
- }
62
-
63
15
private class ExternalContextSource extends SourceModelCsv {
64
16
override predicate row ( string row ) {
65
17
row =
0 commit comments