KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > org > w3c > dom > DOMException

org.w3c.dom
Class DOMException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.w3c.dom.DOMException
All Implemented Interfaces:
Serializable
See Also:
Top Examples, Source Code

public short code
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public DOMException(short code,
                    String message)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final short DOMSTRING_SIZE_ERR
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final short HIERARCHY_REQUEST_ERR
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


[890]Change node attribute
By sacpopli { at } in { dot } ibm { dot } com on 2004/09/10 06:40:56  Rate
private void setNodeAttribute ( Node nodeElement, String sAttributeName, String sAttributeValue )  
    {  
         Node attribute = document.createAttribute ( sAttributeName ) ; 
         Node value = document.createTextNode ( sAttributeValue ) ; 
         attribute.appendChild ( value ) ; 
         nodeElement.appendChild ( attribute ) ;         
    } 


public static final short INDEX_SIZE_ERR
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final short INUSE_ATTRIBUTE_ERR
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final short INVALID_ACCESS_ERR
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final short INVALID_CHARACTER_ERR
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final short INVALID_MODIFICATION_ERR
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final short INVALID_STATE_ERR
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final short NAMESPACE_ERR
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final short NOT_FOUND_ERR
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final short NOT_SUPPORTED_ERR
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final short NO_DATA_ALLOWED_ERR
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final short NO_MODIFICATION_ALLOWED_ERR
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final short SYNTAX_ERR
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final short TYPE_MISMATCH_ERR
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final short VALIDATION_ERR
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final short WRONG_DOCUMENT_ERR
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


[889]Importing node
By bajaj_jaya { at } yahoo { dot } com on 2004/09/09 08:48:28  Rate
bookingDoc.importNode ( productGroupNode, true ) ; 
       bookingDoc.getDocumentElement (  ) .appendChild ( productGroupNode ) ; 
 

Popular Tags