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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


CDATASectionorg.w3c.dom

Java 1.4

This interface represents a CDATA section in an XML
document. CDATASection is a subinterface of
Text and does not define any methods of its own.
The content of the CDATA section is available through the
getNodeValue( ) method inherited from Node, or
through the getdata( ) method inherited from
CharacterData. Although
CDATASection nodes can often be treated in the
same way as Text nodes, note that the
Node.normalize( ) method does not merge adjacent
CDATA sections.


Figure 21-2. org.w3c.dom.CDATASection

public interface

CDATASection extends Text {
}


Returned By


Document.createCDATASection( )


    / 1191