blob: c114b3c6862fb54d9ceaed05e22447a39e2a9f78 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Boeing.
* 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:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.ote.client.msg.core;
import org.eclipse.osee.ote.client.msg.core.db.AbstractMessageDataBase;
import org.eclipse.osee.ote.service.IMessageDictionary;
/**
* @author Ken J. Aguilar
*
*/
public interface IMessageDbFactory {
AbstractMessageDataBase createMessageDataBase(IMessageDictionary dictionary);
}