blob: 035387863723a02a2805d1f9a0ccdb9e0865c5a2 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2011,2012 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>
*/
package org.eclipse.ocl.examples.pivot.values;
import org.eclipse.ocl.examples.domain.values.impl.AbstractValueFactory;
import org.eclipse.ocl.examples.pivot.manager.MetaModelManager;
public class PivotValueFactory extends AbstractValueFactory
{
public PivotValueFactory(MetaModelManager metaModelManager) {
super(metaModelManager);
}
public MetaModelManager getMetaModelManager() {
return (MetaModelManager) getStandardLibrary();
}
}