1 /******************************************************************************* 2 * Copyright (c) 2000, 2005 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 package org.eclipse.debug.core.model; 12 13 /** 14 * A debug model provider provides debug model identifiers. 15 * This interface is used as an adapter to determine what 16 * debug models are associated with an adaptable object. 17 * Generally, when debugging one language, only one debug 18 * model is associated with a debug element. However, 19 * a debug model that provides cross language debugging 20 * may represent several debug models. 21 * <p> 22 * Clients are intended to implement this interface. 23 * </p> 24 * @since 3.0 25 */ 26 public interface IDebugModelProvider { 27 28 /** 29 * Returns a collection of debug model identifiers. 30 * 31 * @return a collection of debug model identifiers 32 */ 33 public String[] getModelIdentifiers(); 34 35 } 36