blob: 3825649c5b7c343dde27881076d36d558cdfc8ed [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2016 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
*
*******************************************************************************/
package org.eclipse.dltk.python.internal.core.evaluation.types;
import org.eclipse.dltk.core.IModelElement;
import org.eclipse.dltk.ti.types.IEvaluatedType;
public class ImportedCallType implements IEvaluatedType
{
private IModelElement fModelElement = null;
public ImportedCallType( IModelElement element ) {
this.fModelElement = element;
}
public IModelElement getElement() {
return this.fModelElement;
}
@Override
public String getTypeName()
{
return "imported call type";
}
@Override
public boolean subtypeOf(IEvaluatedType type) {
// TODO Auto-generated method stub
return false;
}
}