blob: 5b51b836282693bfc385641edbae461ff6119620 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2008 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
*******************************************************************************/
package org.eclipse.pde.internal.ua.ui.editor.cheatsheet.simple;
import org.eclipse.pde.core.IBaseModel;
import org.eclipse.pde.internal.ui.editor.PDEFormEditor;
import org.eclipse.pde.internal.ui.editor.context.InputContext;
import org.eclipse.pde.internal.ui.editor.context.InputContextManager;
/**
* SimpleCSInputContextManager
*
*/
public class SimpleCSInputContextManager extends InputContextManager {
/**
* @param editor
*/
public SimpleCSInputContextManager(PDEFormEditor editor) {
super(editor);
}
/* (non-Javadoc)
* @see org.eclipse.pde.internal.ui.editor.context.InputContextManager#getAggregateModel()
*/
public IBaseModel getAggregateModel() {
InputContext context = findContext(SimpleCSInputContext.CONTEXT_ID);
return (context != null) ? context.getModel() : null;
}
}