blob: 3c431f30790511ef0d7d234fc59c6017fa51ddd9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012, 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.pivot.internal.ids;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.ocl.pivot.ids.BindingsId;
import org.eclipse.ocl.pivot.ids.IdVisitor;
import org.eclipse.ocl.pivot.ids.TemplateableTypeId;
public class SpecializedTypeIdImpl extends AbstractSpecializedIdImpl<TemplateableTypeId> implements TemplateableTypeId
{
public SpecializedTypeIdImpl(@NonNull TemplateableTypeId generalizedId, @NonNull BindingsId templateBindings) {
super(generalizedId, templateBindings);
}
@Override
public <R> R accept(@NonNull IdVisitor<R> visitor) {
return visitor.visitTemplateableTypeId(this);
}
@Override
protected @NonNull TemplateableTypeId createSpecializedId(@NonNull BindingsId templateBindings) {
return new SpecializedTypeIdImpl(this, templateBindings);
}
// public @NonNull String getDisplayName() {
// return parent + "::" + typeParameters;
// }
@Override
public @NonNull TemplateableTypeId specialize(@NonNull BindingsId templateBindings) {
return createSpecializedId(templateBindings);
}
}