blob: 1c1dcb889a325885d22d690d8591277cea6748b5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015, 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.qvtd.compiler.internal.qvts2qvts.checks;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.jdt.annotation.Nullable;
import org.eclipse.qvtd.pivot.qvtschedule.Node;
import org.eclipse.qvtd.pivot.qvtschedule.OperationNode;
/**
* A NonNullInitializerCheckedCondition identifies the failure that arises when
* a required initializer is evaluated to null.
*/
public class NonNullInitializerCheckedCondition extends CheckedCondition
{
protected final @NonNull OperationNode operationNode;
public NonNullInitializerCheckedCondition(@NonNull OperationNode operationNode) {
this.operationNode = operationNode;
}
@Override
public <R> R accept(@NonNull CheckedConditionVisitor<R> visitor) {
return visitor.visitNonNullInitializerCheckedCondition(this);
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof NonNullInitializerCheckedCondition)) {
return false;
}
NonNullInitializerCheckedCondition that = (NonNullInitializerCheckedCondition)obj;
return operationNode == that.operationNode;
}
@Override
public @Nullable Node getNode() {
return operationNode;
}
public @NonNull OperationNode getOperationNode() {
return operationNode;
}
@Override
public int hashCode() {
return getClass().hashCode() + System.identityHashCode(operationNode);
}
}