blob: 11c7762f6b08e0e34d39f8112cd1612e63902cc9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 The University of York.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Dimitrios Kolovos - initial API and implementation
******************************************************************************/
package org.eclipse.epsilon.eol.types;
import java.util.List;
import org.eclipse.epsilon.eol.exceptions.EolIllegalOperationParametersException;
import org.eclipse.epsilon.eol.exceptions.EolRuntimeException;
public class EolModelType extends EolType {
public EolModelType() {
super();
}
@Override
public boolean isType(Object o) {
return false;
}
@Override
public boolean isKind(Object o) {
return false;
}
@Override
public Object createInstance() {
return null;
}
@Override
public Object createInstance(List<Object> parameters) throws EolRuntimeException {
throw new EolIllegalOperationParametersException("createInstance");
}
@Override
public String getName() {
return null;
}
}