Java in a Nutshell, 5th Edition [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Java in a Nutshell, 5th Edition [Electronic resources] - نسخه متنی

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید


Commentorg.w3c.dom

Java 1.4

A Comment node represents a comment in an XML
document. The content of the comment (i.e. the text between
<!-- and -->) is
available with the getdata( ) method inherited
from CharacterData, or through the
getNodeValue( ) method inherited from
Node. This content may be manipulated using the
various methods inherited from CharacterData


Figure 21-4. org.w3c.dom.Comment

public interface

Comment extends CharacterData {
}


Returned By


Document.createComment( )


    / 1191