blob: 086eaf7c8b16a5a86ffbcfd3627acc9544a5a9e4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 xored software, Inc.
*
* 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:
* xored software, Inc. - initial API and Implementation (Alex Panchenko)
*******************************************************************************/
package org.eclipse.dltk.debug.core.model;
import org.eclipse.dltk.debug.core.IDebugOptions;
public class DefaultDebugOptions implements IDebugOptions {
private static IDebugOptions defaultInstance = null;
public static IDebugOptions getDefaultInstance() {
if (defaultInstance == null) {
defaultInstance = new DefaultDebugOptions();
}
return defaultInstance;
}
protected DefaultDebugOptions() {
// empty
}
public boolean get(BooleanOption option) {
return option.getDefaultValue();
}
public int get(IntegerOption option) {
return option.getDefaultValue();
}
public String get(StringOption option) {
return option.getDefaultValue();
}
public IScriptStackFrame[] filterStackLevels(IScriptStackFrame[] frames) {
return (IScriptStackFrame[]) frames.clone();
}
public boolean isValidStack(IScriptStackFrame[] frames) {
return true;
}
}