blob: 9817c9ba0efd799367a9cc268af0a7108ec4e012 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2011 E.D.Willink 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:
* E.D.Willink - Initial API and implementation
*
* </copyright>
*
* $Id: StatesJavaValidator.java,v 1.2 2011/03/13 16:24:24 ewillink Exp $
*/
package org.eclipse.ocl.tutorial.eclipsecon2011.validation;
import org.eclipse.emf.common.util.URI;
import org.eclipse.ocl.pivot.utilities.OCL;
//import org.eclipse.ocl.xtext.completeocl.validation.CompleteOCLEObjectValidator;
import org.eclipse.ocl.tutorial.eclipsecon2011.states.StatesPackage;
import org.eclipse.ocl.xtext.completeocl.validation.CompleteOCLEObjectValidator;
import org.eclipse.xtext.validation.EValidatorRegistrar;
public class StatesJavaValidator extends AbstractStatesJavaValidator
{
@Override
public void register(EValidatorRegistrar registrar) {
super.register(registrar);
OCL ocl = OCL.newInstance();
StatesPackage ePackage = StatesPackage.eINSTANCE;
URI oclURI = URI.createPlatformResourceURI(
"/org.eclipse.ocl.tutorial.eclipsecon2011.states.ocl/model/States.ocl", true);
registrar.register(ePackage,
new CompleteOCLEObjectValidator(ePackage, oclURI, ocl.getEnvironmentFactory()));
}
}