Java 类org.w3c.dom.views.DocumentView 实例源码
项目:Push2Display
文件:SVGOMSVGElement.java
/**
* <b>DOM</b>: Implements {@link
* org.w3c.dom.css.ViewCSS#getComputedStyle(Element,String)}.
*/
public CSSStyleDeclaration getComputedStyle(Element elt,
String pseudoElt) {
AbstractView av = ((DocumentView)getOwnerDocument()).getDefaultView();
return ((ViewCSS)av).getComputedStyle(elt, pseudoElt);
}
项目:gwt-chronoscope
文件:BatikGssProperties.java
protected CSSStyleDeclaration getCssProperties(Element styleElem,
String pseudoElt) {
return ((ViewCSS) (((DocumentView) doc).getDefaultView()))
.getComputedStyle(styleElem, pseudoElt);
}
项目:Push2Display
文件:SVGOMSVGElement.java
/**
* <b>DOM</b>: Implements {@link
* org.w3c.dom.css.ViewCSS#getComputedStyle(Element,String)}.
*/
public CSSStyleDeclaration getComputedStyle(Element elt,
String pseudoElt) {
AbstractView av = ((DocumentView)getOwnerDocument()).getDefaultView();
return ((ViewCSS)av).getComputedStyle(elt, pseudoElt);
}
项目:feathers-sdk
文件:SVGOMSVGElement.java
/**
* <b>DOM</b>: Implements {@link
* org.w3c.dom.css.ViewCSS#getComputedStyle(Element,String)}.
*/
public CSSStyleDeclaration getComputedStyle(Element elt,
String pseudoElt) {
AbstractView av = ((DocumentView)getOwnerDocument()).getDefaultView();
return ((ViewCSS)av).getComputedStyle(elt, pseudoElt);
}
项目:LoboEvolution
文件:SVGSVGElementImpl.java
@Override
public DocumentView getDocument() {
// TODO Auto-generated method stub
return null;
}
项目:LoboEvolution
文件:Window.java
@Override
public DocumentView getDocument() {
return this.getWindowDocument();
}
项目:ScriptBox
文件:WindowProxy.java
@ScriptGetter
@Override
public DocumentView getDocument() {
return getProxiedWindow().getDocument();
}
项目:Push2Display
文件:CSSOMViewCSS.java
/**
* <b>DOM</b>: Implements {@link
* org.w3c.dom.views.AbstractView#getDocument()}.
*/
public DocumentView getDocument() {
return (DocumentView)cssEngine.getDocument();
}
项目:Push2Display
文件:SVGOMSVGElement.java
/**
* <b>DOM</b>: Implements {@link
* org.w3c.dom.views.AbstractView#getDocument()}.
*/
public DocumentView getDocument() {
return (DocumentView)getOwnerDocument();
}
项目:Push2Display
文件:CSSOMViewCSS.java
/**
* <b>DOM</b>: Implements {@link
* org.w3c.dom.views.AbstractView#getDocument()}.
*/
public DocumentView getDocument() {
return (DocumentView)cssEngine.getDocument();
}
项目:Push2Display
文件:SVGOMSVGElement.java
/**
* <b>DOM</b>: Implements {@link
* org.w3c.dom.views.AbstractView#getDocument()}.
*/
public DocumentView getDocument() {
return (DocumentView)getOwnerDocument();
}
项目:feathers-sdk
文件:CSSOMViewCSS.java
/**
* <b>DOM</b>: Implements {@link
* org.w3c.dom.views.AbstractView#getDocument()}.
*/
public DocumentView getDocument() {
return (DocumentView)cssEngine.getDocument();
}
项目:feathers-sdk
文件:SVGOMSVGElement.java
/**
* <b>DOM</b>: Implements {@link
* org.w3c.dom.views.AbstractView#getDocument()}.
*/
public DocumentView getDocument() {
return (DocumentView)getOwnerDocument();
}
项目:ScriptBox
文件:Window.java
/**
* Returns Window object's newest Document object.
*
* @return Window object's newest Document object.
* @see <a href="http://www.w3.org/html/wg/drafts/html/master/browsers.html#dom-document-0">document</a>
*/
@ScriptGetter
public DocumentView getDocument() {
return documentImpl;
}