refactor SBVModelFactory to internal package.
authortimkelly
Thu, 09 Jul 2009 14:26:36 -0500
changeset 362 8f7dc8c70597
parent 361 3cdf5667cd54
child 363 291972d4f3ea
refactor SBVModelFactory to internal package.
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<ISBVOwnedModel> {
-
-	/* (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);
-	}
-
-}