Skip to main content
summaryrefslogtreecommitdiffstats
blob: 287882ac475ab674a07b527778d3635a79b0441a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*******************************************************************************
 * Copyright (c) 2013, 2019 IBM Corporation and others.
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.jst.jsf.metadataprocessors.internal;

import org.eclipse.jst.jsf.context.IModelContext;
import org.eclipse.jst.jsf.metadataprocessors.IMetaDataEnabledFeature;

/**
 * Add the ability to inject a more general model context than IStructuredDocumentContext.
 *
 */
public interface IMetaDataEnabledFeature2 extends IMetaDataEnabledFeature
{
    /**
     * @return the model context
     */
    IModelContext getModelContext();
    
    /**
     * @param modelContext
     */
    void setModelContext(IModelContext modelContext);

}

Back to the top