1 /******************************************************************************* 2 * Copyright (c) 2006 IBM Corporation and others. 3 * All rights reserved. This program and the accompanying materials 4 * are made available under the terms of the Eclipse Public License v1.0 5 * which accompanies this distribution, and is available at 6 * http://www.eclipse.org/legal/epl-v10.html 7 * 8 * Contributors: 9 * IBM Corporation - initial API and implementation 10 *******************************************************************************/ 11 12 package org.eclipse.pde.internal.core.icheatsheet; 13 14 /** 15 * ICSConstants 16 * 17 */ 18 public interface ICSConstants { 19 20 // Attribute Values 21 22 public static final String ATTRIBUTE_VALUE_ENCODING = "UTF-8"; //$NON-NLS-1$ 23 24 public static final String ATTRIBUTE_VALUE_TRUE = "true"; //$NON-NLS-1$ 25 26 public static final String ATTRIBUTE_VALUE_FALSE = "false"; //$NON-NLS-1$ 27 28 29 } 30