blob: 61ae452c9f24c18d1975f1aa584c03484bdcd90d [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.netbeans.modules.debugger.jpda;
import org.netbeans.api.debugger.DebuggerEngine;
import org.netbeans.api.debugger.Session;
import org.netbeans.api.debugger.jpda.JPDADebugger;
import org.netbeans.spi.debugger.DebuggerEngineProvider;
import org.netbeans.spi.debugger.ContextProvider;
import org.openide.util.RequestProcessor;
/**
* Represents one debugger plug-in - one Debugger Implementation.
* Each Debugger Implementation can add support for debugging of some
* language or environment to the IDE.
*
* @author Jan Jancura
*/
public class JavaEngineProvider extends DebuggerEngineProvider {
private DebuggerEngine.Destructor desctuctor;
private Session session;
private RequestProcessor jpdaRP = new RequestProcessor("JPDA Debugger", 5);
public JavaEngineProvider (ContextProvider contextProvider) {
session = contextProvider.lookupFirst(null, Session.class);
}
public String[] getLanguages () {
return new String[] {"Java"};
}
public String getEngineTypeID () {
return JPDADebugger.ENGINE_ID;
}
public Object[] getServices () {
Object[] services = new Object[1];
services[0] = jpdaRP;
return services;
}
public void setDestructor (DebuggerEngine.Destructor desctuctor) {
this.desctuctor = desctuctor;
}
public DebuggerEngine.Destructor getDestructor () {
return desctuctor;
}
public Session getSession () {
return session;
}
RequestProcessor getRequestProcessor() {
return jpdaRP;
}
}