blob: 5456e02145dee3e62cb799209e0ffc3cd87ea22e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014, 2018 Willink Transformations and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* E.D.Willink - initial API and implementation
*******************************************************************************/
package org.eclipse.ocl.examples.debug.vm.launching;
import java.util.List;
import org.eclipse.ocl.examples.debug.vm.utils.Log;
import org.eclipse.ocl.examples.debug.vm.utils.WriterLog;
public class ExecutionContextImpl implements ExecutionContext {
public void setConfigProperty(String name, Object value) {
// TODO Auto-generated method stub
}
public void setLog(WriterLog writerLog) {
// TODO Auto-generated method stub
}
@Override
public Log getLog() {
// TODO Auto-generated method stub
return null;
}
@Override
public List<String> getConfigPropertyNames() {
// TODO Auto-generated method stub
return null;
}
@Override
public String getConfigProperty(String key) {
// TODO Auto-generated method stub
return null;
}
}