Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 137969
Collapse All | Expand All

(-)jaxen-1.0-FCS.orig/src/java/main/org/jaxen/dom/NamespaceNode.java (+114 lines)
Lines 611-616 Link Here
611
	    return null;
611
	    return null;
612
	}
612
	}
613
    }
613
    }
614
    /**
615
     * @todo DOM level 3 getUserData() Not implemented. Returns null.
616
     * @see org.w3c.dom.Node#getUserData(java.lang.String)
617
     */
618
    public Object getUserData(String key)
619
    {
620
        return null;
621
    }    
622
623
    /**
624
     * @todo DOM level 3 setUserData() Not implemented. Returns null.
625
     * @see org.w3c.dom.Node#setUserData(java.lang.String, java.lang.Object, org.w3c.dom.UserDataHandler)
626
     */
627
    public Object setUserData(String key, Object data, org.w3c.dom.UserDataHandler handler)
628
    {
629
        return null;
630
    }
631
632
    /**
633
     * DOM2 - not implemented.
634
     * @see #isSupported(java.lang.String, java.lang.String)
635
     */
636
    public boolean supports(String feature, String version)
637
    {
638
        return isSupported(feature, version);
639
    }
640
641
    /**
642
     * @todo DOM level 3 compareDocumentPosition() Not implemented.
643
     * @see org.w3c.dom.Node#compareDocumentPosition(org.w3c.dom.Node)
644
     */
645
    public short compareDocumentPosition(org.w3c.dom.Node other) throws DOMException
646
    {
647
        throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "DOM method not supported");
648
    }
649
650
    /**
651
     * @todo DOM level 3 getBaseURI() Not implemented. Returns null.
652
     * @see org.w3c.dom.Node#getBaseURI()
653
     */
654
    public String getBaseURI()
655
    {
656
        return null;
657
    }
658
659
    /**
660
     * @todo DOM level 3 getFeature() Not implemented. Returns null.
661
     * @see org.w3c.dom.Node#getFeature(java.lang.String, java.lang.String)
662
     */
663
    public Object getFeature(String feature, String version)
664
    {
665
        return null;
666
    }
667
668
    /**
669
     * @todo DOM level 3 getTextContent() Not implemented. Returns null.
670
     * @see org.w3c.dom.Node#getTextContent()
671
     */
672
    public String getTextContent() throws DOMException
673
    {
674
        return null;
675
    }
676
677
    /**
678
     * @see org.w3c.dom.Node#isDefaultNamespace(java.lang.String)
679
     */
680
    public boolean isDefaultNamespace(String namespaceURI)
681
    {
682
        return false;
683
    }
684
685
    /**
686
     * @todo DOM level 3 isEqualNode() Not implemented. Returns false.
687
     * @see org.w3c.dom.Node#isEqualNode(org.w3c.dom.Node)
688
     */
689
    public boolean isEqualNode(org.w3c.dom.Node arg)
690
    {
691
        return false;
692
    }
693
694
    /**
695
     * @todo DOM level 3 isSameNode() Not implemented. Returns false.
696
     * @see org.w3c.dom.Node#isSameNode(org.w3c.dom.Node)
697
     */
698
    public boolean isSameNode(org.w3c.dom.Node other)
699
    {
700
        return false;
701
    }
702
703
    /**
704
     * @see org.w3c.dom.Node#lookupNamespaceURI(java.lang.String)
705
     */
706
    public String lookupNamespaceURI(String prefix)
707
    {
708
        return null;
709
    }
710
711
    /**
712
     * @see org.w3c.dom.Node#lookupPrefix(java.lang.String)
713
     */
714
    public String lookupPrefix(String namespaceURI)
715
    {
716
        return null;
717
    }
718
719
    /**
720
     * @todo DOM level 3 setTextContent() Not implemented. Throws NO_MODIFICATION_ALLOWED_ERR
721
     * @see org.w3c.dom.Node#setTextContent(java.lang.String)
722
     */
723
    public void setTextContent(String textContent) throws DOMException
724
    {
725
        throw new DOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, "Node is read only");
726
    }
727
614
}
728
}
615
729
616
// end of Namespace.java
730
// end of Namespace.java

Return to bug 137969