blob: f80a886b916149fc40652ccdd355e44aaa73c475 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2005 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 API and implementation
*******************************************************************************/
/*
* Created on Mar 4, 2004
*
* To change the template for this generated file go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
package org.eclipse.wst.common.internal.emfworkbench.integration;
import java.util.Map;
import org.eclipse.jem.util.emf.workbench.nature.EMFNature;
import org.eclipse.wst.common.internal.emfworkbench.EMFWorkbenchContext;
/**
* @author schacher
*
* To change the template for this generated type comment go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
public abstract class EditModelNature extends EMFNature {
/**
*
*/
public EditModelNature() {
super();
}
public EditModel getEditModelForRead(String editModelKey, Object accessorKey) {
return getEditModelForRead(editModelKey, accessorKey, null);
}
public EditModel getEditModelForWrite(String editModelKey, Object accessorKey) {
return getEditModelForWrite(editModelKey, accessorKey, null);
}
public EditModel getEditModelForRead(String editModelKey, Object accessorKey, Map params) {
EditModel result = null;
if (getEmfContext() != null)
result = getEmfContext().getEditModelForRead(editModelKey, accessorKey, params);
return result;
}
public EditModel getEditModelForWrite(String editModelKey, Object accessorKey, Map params) {
EditModel result = null;
if (getEmfContext() != null)
result = getEmfContext().getEditModelForWrite(editModelKey, accessorKey, params);
return result;
}
protected EMFWorkbenchContext getEmfContext() {
return (EMFWorkbenchContext) getEmfContextBase();
}
}