blob: 750927f29e5baa22c2f06aca27b46b9d2bbfb03e [file] [log] [blame]
/*
* Copyright (c) 2005, 2006 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
*
* Contributors:
* IBM - initial API and implementation
*
* $Id: FinalStateImpl.java,v 1.3 2006/02/23 17:20:47 khussey Exp $
*/
package org.eclipse.uml2.uml.internal.impl;
import java.util.Map;
import org.eclipse.emf.common.util.DiagnosticChain;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.uml2.uml.FinalState;
import org.eclipse.uml2.uml.UMLPackage;
import org.eclipse.uml2.uml.internal.operations.FinalStateOperations;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Final State</b></em>'.
* <!-- end-user-doc -->
* <p>
* </p>
*
* @generated
*/
public class FinalStateImpl
extends StateImpl
implements FinalState {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected FinalStateImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected EClass eStaticClass() {
return UMLPackage.Literals.FINAL_STATE;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean validateNoOutgoingTransitions(DiagnosticChain diagnostics,
Map context) {
return FinalStateOperations.validateNoOutgoingTransitions(this,
diagnostics, context);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean validateNoRegions(DiagnosticChain diagnostics, Map context) {
return FinalStateOperations.validateNoRegions(this, diagnostics,
context);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean validateCannotReferenceSubmachine(
DiagnosticChain diagnostics, Map context) {
return FinalStateOperations.validateCannotReferenceSubmachine(this,
diagnostics, context);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean validateNoEntryBehavior(DiagnosticChain diagnostics,
Map context) {
return FinalStateOperations.validateNoEntryBehavior(this, diagnostics,
context);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean validateNoExitBehavior(DiagnosticChain diagnostics,
Map context) {
return FinalStateOperations.validateNoExitBehavior(this, diagnostics,
context);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean validateNoStateBehavior(DiagnosticChain diagnostics,
Map context) {
return FinalStateOperations.validateNoStateBehavior(this, diagnostics,
context);
}
} //FinalStateImpl