# HG changeset patch # User timkelly # Date 1247167596 18000 # Node ID 8f7dc8c705977a258357fd8983cf1315d447ec30 # Parent 3cdf5667cd548b400421116650d4913009d8cabc refactor SBVModelFactory to internal package. diff -r 3cdf5667cd54 -r 8f7dc8c70597 project/com.nokia.carbide.cpp.epoc.engine/src/com/nokia/carbide/cpp/epoc/engine/model/SBVModelFactory.java --- a/project/com.nokia.carbide.cpp.epoc.engine/src/com/nokia/carbide/cpp/epoc/engine/model/SBVModelFactory.java Thu Jul 09 14:16:25 2009 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,35 +0,0 @@ -/* -* Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies). -* All rights reserved. -* This component and the accompanying materials are made available -* under the terms of the License "Eclipse Public License v1.0" -* which accompanies this distribution, and is available -* at the URL "http://www.eclipse.org/legal/epl-v10.html". -* -* Initial Contributors: -* Nokia Corporation - initial contribution. -* -* Contributors: -* -* Description: -* -*/ - -package com.nokia.carbide.cpp.epoc.engine.model; - -import org.eclipse.core.runtime.IPath; -import org.eclipse.jface.text.IDocument; - -import com.nokia.carbide.cpp.epoc.engine.model.sbv.ISBVOwnedModel; -import com.nokia.carbide.internal.cpp.epoc.engine.model.sbv.SBVModel; - -public class SBVModelFactory implements IModelFactory { - - /* (non-Javadoc) - * @see com.nokia.carbide.cpp.epoc.engine.model.IModelFactory#createModel(org.eclipse.core.runtime.IPath, org.eclipse.jface.text.IDocument) - */ - public ISBVOwnedModel createModel(IPath path, IDocument document) { - return new SBVModel(path, document); - } - -}