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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


ProcessingInstructionorg.w3c.dom

Java 1.4

This interface represents an XML processing
instruction (or PI) which specifies an arbitrary string of data to a
named target processor. The getTarget( ) and
getdata( ) methods return the target and data
portions of a PI, and these values can also be obtained using the
getNodeName( ) and getNodeValue(
) methods of the Node interface. You can
alter the data portion of a PI with setData( ) or
with the setNodeValue( ) method of
Node. ProcessingInstruction
nodes never have children.


Figure 21-13. org.w3c.dom.ProcessingInstruction

public interface

ProcessingInstruction extends Node {
// Public Instance Methods
String

getData ( );
String

getTarget ( );
void

setData (String

data ) throws DOMException;
}


Returned By


Document.createProcessingInstruction( )


    / 1191