1/* 2 * Copyright (C) 2010 Google Inc. 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, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17package com.google.clearsilver.jsilver.values; 18 19import com.google.clearsilver.jsilver.autoescape.EscapeMode; 20 21/** 22 * A simple string value. 23 * 24 * @see Value 25 */ 26class StringValue extends VariantValue { 27 28 private final String value; 29 30 public StringValue(String value, EscapeMode escapeMode, boolean partiallyEscaped) { 31 super(escapeMode, partiallyEscaped); 32 this.value = value; 33 } 34 35 @Override 36 protected String value() { 37 return value; 38 } 39 40 @Override 41 public boolean exists() { 42 return true; 43 } 44 45 @Override 46 public boolean isEmpty() { 47 return value.length() == 0; 48 } 49} 50