Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 6e777419d9d5fe04fb438e0c43dec3ae1cd92975 (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
35
36
37
38
/*******************************************************************************
 * Copyright (c) 2008 Oracle Corporation.
 * 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:
 *    Oracle - initial API and implementation
 *    
 ********************************************************************************/
package org.eclipse.jst.jsf.context.structureddocument;

import org.eclipse.jst.jsf.context.structureddocument.internal.impl.StructuredDocumentContextFactory;
import org.w3c.dom.Element;

/**
 * A factory method for constructing context objects related to
 * SSE structured documents.  
 *
 * May be sub-classed or implemented by clients
 * 
 */
public interface IStructuredDocumentContextFactory2 extends
		IStructuredDocumentContextFactory {
	
	/**
	 * The default singleton instance of the factory
	 */
	public static final IStructuredDocumentContextFactory2  INSTANCE = 
        StructuredDocumentContextFactory.getInstance();
	
	/**
	 * @param element -- org.w3c.Element 
	 * @return a context for the element or if null if one cannot be determined.
	 */
	IStructuredDocumentContext getContext(Element element);
}

Back to the top