Coverage Report - javax.faces.internal.InternalConstants
 
Classes in this File Line Coverage Branch Coverage Complexity
InternalConstants
N/A
N/A
0
 
 1  
 /*
 2  
  * Copyright 2004-2011 the Seasar Foundation and the Others.
 3  
  *
 4  
  * Licensed under the Apache License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  *
 8  
  *     http://www.apache.org/licenses/LICENSE-2.0
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
 13  
  * either express or implied. See the License for the specific language
 14  
  * governing permissions and limitations under the License.
 15  
  */
 16  
 package javax.faces.internal;
 17  
 
 18  
 /**
 19  
  * @author shot
 20  
  *
 21  
  */
 22  
 public interface InternalConstants {
 23  
 
 24  
     String COMPONENT_TAG_STACK_ATTR = "javax.faces.webapp.COMPONENT_TAG_STACK";
 25  
 
 26  
     String JSP_CREATED_COMPONENT_IDS = "javax.faces.webapp.COMPONENT_IDS";
 27  
 
 28  
     String JSP_CREATED_FACET_NAMES = "javax.faces.webapp.FACET_NAMES";
 29  
 
 30  
     String GLOBAL_ID_VIEW = "javax.faces.webapp.GLOBAL_ID_VIEW";
 31  
 
 32  
     String CURRENT_FACES_CONTEXT = "javax.faces.webapp.CURRENT_FACES_CONTEXT";
 33  
 
 34  
     String CURRENT_VIEW_ROOT = "javax.faces.webapp.CURRENT_VIEW_ROOT";
 35  
 
 36  
     String DEFAULT_GRID_ASYNC = "teeda.DEFAULT_GRID_ASYNC";
 37  
 
 38  
     String GRID_FIRST_RENDER_ROW_COUNT = "teeda.GRID_FIRST_RENDER_ROW_COUNT";
 39  
 
 40  
     String DEFAULT_LAYOUT_PATH = "teeda.DEFAULT_LAYOUT_PATH";
 41  
 
 42  
     Object[] EMPTY_ARGS = new Object[0];
 43  
 
 44  
     String DOT = ".";
 45  
 
 46  
     String LABEL = "label";
 47  
 
 48  
 }