KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > facelets > compiler > LiteralCommentInstruction


1 /**
2  * Licensed under the Common Development and Distribution License,
3  * you may not use this file except in compliance with the License.
4  * You may obtain a copy of the License at
5  *
6  * http://www.sun.com/cddl/
7  *
8  * Unless required by applicable law or agreed to in writing, software
9  * distributed under the License is distributed on an "AS IS" BASIS,
10  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
11  * implied. See the License for the specific language governing
12  * permissions and limitations under the License.
13  */

14
15 package com.sun.facelets.compiler;
16
17 import java.io.IOException JavaDoc;
18
19 import javax.el.ELContext;
20 import javax.el.ExpressionFactory;
21
22 import javax.faces.context.FacesContext;
23
24 final class LiteralCommentInstruction implements Instruction {
25     private final String JavaDoc text;
26
27     public LiteralCommentInstruction(String JavaDoc text) {
28         this.text = text;
29     }
30
31     public void write(FacesContext context) throws IOException JavaDoc {
32         context.getResponseWriter().writeComment(this.text);
33     }
34
35     public Instruction apply(ExpressionFactory factory, ELContext ctx) {
36         return this;
37     }
38
39     public boolean isLiteral() {
40         return true;
41     }
42 }
43
Popular Tags