blob: a25883b0c2dc85f4ab2b669cd59f3ef821f7ba6e [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.myfaces.extensions.scripting.jsf.components;
/**
* Renderer Constant shared by both renderers
*
* @author Werner Punz (latest modification by $Author$)
* @version $Revision$ $Date$
*/
public class RendererConst {
static final String ERROR_BOX = "errorBox";
static final String WARNING_ENGINE_NOT_FOUND = "Warning engine not found";
static final String LINE_NO = "lineNo";
static final String MESSAGE = "message";
static final String NO_COMPILE_ERRORS = "No compile errors";
static final String HTML_DIV = "div";
static final String HTML_CLASS = "class";
static final String NO_TAINT_HISTORY_FOUND = "No taint history found";
static final String LINE = "line";
static final String TIMESTAMP = "timestamp";
static final String CHANGED_FILE = "changedFile";
static final String ERRORS_LABEL = "errorsLabel";
static final String WARNINGS_LABEL = "warningsLabel";
static final String ERRORS = "errors";
static final String WARNINGS = "warnings";
}