blob: 7a19dad1d8ff0bfafc23281af2baf6b50f706979 [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 <> null implies name.at(1) = name.at(1).toUpperCase()