Mobile Tools for Java
Release 1.0

org.eclipse.mtj.core.build.preverifier
Interface IPreverificationError


public interface IPreverificationError

The interface IPreverificationError and its implementors represents a preverification error that was caught while preverifing of the compiled classes of a IMTJProject.

All implementations of this interface are internal, and should not be accessed directly by clients(compatibility will not be maintained). This Interface was only made available publicly to maintain consistency of the IPreverifier interface. Most clients will never use it.

Since:
1.0
Restriction:
This interface is not intended to be implemented by clients.

Method Summary
 String getDetail()
          Returns the detail message string of this PreverificationError.
 Object getLocation()
          Returns the location where the error occurred or null if the location is unknown.
 Object getType()
          Returns the type of the error found during preverification.
 

Method Detail

getDetail

String getDetail()
Returns the detail message string of this PreverificationError.

Returns:
the detail message string of this PreverificationError instance (which may be null).

getLocation

Object getLocation()
Returns the location where the error occurred or null if the location is unknown.

Returns:
Returns the error location of this PreverificationError or null if the location is unknown.

getType

Object getType()
Returns the type of the error found during preverification.

Returns:
a type representing an error found during preverification.

Mobile Tools for Java
Release 1.0