KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ant > internal > ui > debug > AntSourceLookupDirector


1 /*******************************************************************************
2  * Copyright (c) 2004, 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.ant.internal.ui.debug;
12
13 import org.eclipse.core.runtime.CoreException;
14 import org.eclipse.debug.core.sourcelookup.AbstractSourceLookupDirector;
15 import org.eclipse.debug.core.sourcelookup.ISourceLookupParticipant;
16
17 /**
18  * Ant source lookup director. For Ant source lookup there is one source
19  * lookup participant.
20  */

21 public class AntSourceLookupDirector extends AbstractSourceLookupDirector {
22     
23     /* (non-Javadoc)
24      * @see org.eclipse.debug.core.sourcelookup.ISourceLookupDirector#initializeParticipants()
25      */

26     public void initializeParticipants() {
27         addParticipants(new ISourceLookupParticipant[]{new AntSourceLookupParticipant()});
28     }
29
30     /* (non-Javadoc)
31      * @see org.eclipse.debug.core.model.IPersistableSourceLocator#getMemento()
32      */

33     public String JavaDoc getMemento() throws CoreException {
34         return null;
35     }
36 }
Popular Tags