/******************************************************************************* * Copyright (c) 2009 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation * Zend Technologies *******************************************************************************/ package org.eclipse.php.internal.debug.core.xdebug.dbgp.model; import org.eclipse.php.internal.debug.core.PHPDebugCoreMessages; public interface IDBGpModelConstants { public static final String DBGP_MODEL_ID = "org.eclipse.php.xdebug.core.dbgp.model"; //$NON-NLS-1$ public static final String INVALID_VAR_CONTENT = PHPDebugCoreMessages.XDebug_IDBGpModelConstants_0; public static final String UNINITIALIZED_VAR_CONTENT = PHPDebugCoreMessages.XDebug_IDBGpModelConstants_1; }