Skip to main content
summaryrefslogtreecommitdiffstats
blob: ad84e1a9b303a272379f4eaaa7fd6f164dfdc37f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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