blob: 7fd228689361b324240c0134ebf9cfe80887220e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.jsdt.debug.opera.internal.jsdi;
import org.eclipse.wst.jsdt.debug.core.jsdi.Location;
import org.eclipse.wst.jsdt.debug.core.jsdi.ScriptReference;
/**
* Default {@link Location} implementation for Opera
*
* @since 0.1
*/
public class LocationImpl extends MirrorImpl implements Location {
/**
* Constructor
* @param vm
*/
public LocationImpl(VirtualMachineImpl vm) {
super(vm);
}
/* (non-Javadoc)
* @see org.eclipse.wst.jsdt.debug.core.jsdi.Location#scriptReference()
*/
public ScriptReference scriptReference() {
return null;
}
/* (non-Javadoc)
* @see org.eclipse.wst.jsdt.debug.core.jsdi.Location#lineNumber()
*/
public int lineNumber() {
return 0;
}
/* (non-Javadoc)
* @see org.eclipse.wst.jsdt.debug.core.jsdi.Location#functionName()
*/
public String functionName() {
return null;
}
}