Package org.fusesource.ide.server.karaf.core.server

Source Code of org.fusesource.ide.server.karaf.core.server.SourceLocator

/*******************************************************************************
* Copyright (c) 2014 Red Hat, Inc.
* Distributed under license by Red Hat, Inc. All rights reserved.
* This program is 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:
* Red Hat, Inc. - initial API and implementation
******************************************************************************/
package org.fusesource.ide.server.karaf.core.server;

import org.eclipse.debug.core.sourcelookup.AbstractSourceLookupDirector;
import org.eclipse.debug.core.sourcelookup.ISourceLookupParticipant;
import org.eclipse.jdt.launching.sourcelookup.containers.JavaSourceLookupParticipant;

public class SourceLocator extends AbstractSourceLookupDirector {

  public void initializeParticipants() {
    ISourceLookupParticipant participant = new JavaSourceLookupParticipant();
    addParticipants(new ISourceLookupParticipant[] { participant } );
  }
   
}
TOP

Related Classes of org.fusesource.ide.server.karaf.core.server.SourceLocator

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.