blob: 5f74edcec6927a13928e0a23db127adb50933c83 [file] [log] [blame]
//------------------------------------------------------------------------------
// Copyright (c) 2005, 2007 IBM Corporation 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:
// IBM Corporation - initial implementation
//------------------------------------------------------------------------------
/**
*
*/
package org.eclipse.epf.diagramming.base.persistence;
/**
* @author Shashidhar Kannoori
*
*/
public interface IDiagramService {
public static final int ACTIVITY_DIAGRAM = 0;
public static final int WORK_PRODUCT_DEPENDENCY_DIAGRAM = 1;
public static final int ACTIVITY_DETAIL_DIAGRAM = 2;
public void dispatch(ISaveInfo info);
public SaveInfo getSaveInfo(Object obj, long timeStamp);
public DiagramService eInstance = DiagramService.eInstance();
}