/******************************************************************************* * Copyright (c) 2009-2013 CWI * 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: * * * Jurgen Vinju - interface and implementation * * Michael Steindorfer - Michael.Steindorfer@cwi.nl - CWI *******************************************************************************/ package org.rascalmpl.value.impl; import org.rascalmpl.value.IAnnotatable; import org.rascalmpl.value.IValue; import org.rascalmpl.value.IWithKeywordParameters; import org.rascalmpl.value.exceptions.IllegalOperationException; import org.rascalmpl.value.io.StandardTextWriter; import org.rascalmpl.value.type.Type; import org.rascalmpl.value.visitors.IValueVisitor; public abstract class AbstractValue implements IValue { protected AbstractValue() { super(); } @Override public boolean isAnnotatable() { return false; } @Override public IAnnotatable<? extends IValue> asAnnotatable() { throw new IllegalOperationException("Cannot be viewed as annotatable.", getType()); } @Override public boolean mayHaveKeywordParameters() { return false; } @Override public IWithKeywordParameters<? extends IValue> asWithKeywordParameters() { throw new IllegalOperationException("Cannot be viewed as with keyword parameters.", getType()); } @Override public Type getType() { throw new UnsupportedOperationException(); } @Override public <T, E extends Throwable> T accept(IValueVisitor<T, E> v) throws E { throw new UnsupportedOperationException(); } @Override public boolean isEqual(IValue other) { return equals(other); } public String toString() { return StandardTextWriter.valueToString(this); } }