blob: 0edbd24681471a84a7a3f399c8567a21db6011e6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.jsdt.debug.internal.jsd2.transport;
/**
* Interface for all the attribute constants
*
* @since 1.0
*/
public interface Attributes {
/**
* The "to" attribute
*/
public static final String TO = "to"; //$NON-NLS-1$
/**
* The "from" attribute
*/
public static final String FROM = "from"; //$NON-NLS-1$
/**
* The "type" attribute
*/
public static final String TYPE = "type"; //$NON-NLS-1$
}