blob: f2b79dab161a28cc418a63351e1159d03f77c5d4 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2015 CEA LIST and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Benoit Maggi (CEA LIST) benoit.maggi@cea.fr - Initial API and implementation
*
*****************************************************************************/
package org.eclipse.papyrus.sysml14.blocks;
import org.eclipse.papyrus.sysml14.blocks.internal.impl.BlocksFactoryImpl;
/**
*
*
*/
public class BlocksFactoryCustomImpl extends BlocksFactoryImpl implements BlocksFactory{
/**
* @see org.eclipse.papyrus.sysml14.blocks.internal.impl.BlocksFactoryImpl#createBoundReference()
*
* @return the BoundReference
*/
@Override
public BoundReference createBoundReference() {
return new BoundReferenceCustomImpl();
}
/**
* @see org.eclipse.papyrus.sysml14.blocks.internal.impl.BlocksFactoryImpl#createBlock()
*
* @return the Block
*/
@Override
public Block createBlock() {
return new BlockCustomImpl();
}
}