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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


DOMLocatororg.w3c.dom

Java 5.0

This
Level 3 interface represents the
location at which a DOMError occurred. The methods
return the location of the error as measured by various metrics (byte
offset, line and column number, etc.) and return
-1 or null if location
information is not available.

public interface

DOMLocator {
// Public Instance Methods
int

getByteOffset ( );
int

getColumnNumber ( );
int

getLineNumber ( );
Node

getRelatedNode ( );
String

getUri ( );
int

getUtf16Offset ( );
}


Returned By


DOMError.getLocation( )


    / 1191