blob: 39f432dd6623444adb5d8b087dd8a6c907163bd0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 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
*
* This file provides additional validation constraints for use during the Complete OCL tutorial.
*******************************************************************************/
import uml : 'http://www.eclipse.org/uml2/5.0.0/UML#/'
context uml::Class
/**
* The first letter of a classname should be uppercase.
*/
inv CamelCaseName: name.at(1)=name.at(1).toUpperCase()