public abstract class

DOMServiceProvider

extends Object
java.lang.Object
   ↳ com.sun.java.browser.dom.DOMServiceProvider

Summary

Public Constructors
DOMServiceProvider()
An empty constructor is provided.
Public Methods
abstract boolean canHandle(Object obj)
Returns true if the DOMService can determine the association between the obj and the underlying DOM in the browser.
abstract DOMImplementation getDOMImplementation()
Returns the DOMImplemenation object of the DOM.
abstract Document getDocument(Object obj)
Returns the Document object of the DOM.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public DOMServiceProvider ()

An empty constructor is provided. Implementations should provide a public constructor so that the DOMService can instantiate instances of the implementation class. Application programmers should not be able to directly construct implementation subclasses of this abstract subclass. The only way an application should be able to obtain a reference to a DOMServiceProvider implementation instance is by using the appropriate methods of the DOMService.

Public Methods

public abstract boolean canHandle (Object obj)

Returns true if the DOMService can determine the association between the obj and the underlying DOM in the browser.

public abstract DOMImplementation getDOMImplementation ()

Returns the DOMImplemenation object of the DOM.

public abstract Document getDocument (Object obj)

Returns the Document object of the DOM.