aicas logoJamaica 6.4 release 1

Uses of Class
java.lang.NullPointerException

Packages that use NullPointerException
java.awt Contains all of the classes for creating user interfaces and for painting graphics and images. 
java.awt.print Provides classes and interfaces for a general printing API. 
javax.management Provides the core classes for the Java Management Extensions. 
javax.realtime Jamaica's implementation of the Real-Time Specification for Java. 
javax.realtime.device JamaicaVM's implementation of the RTSJ Device Module. 
org.xml.sax.helpers This package contains "helper" classes, including support for bootstrapping SAX-based applications. 
 

Uses of NullPointerException in java.awt
 

Methods in java.awt that throw NullPointerException
 void SplashScreen.setImageURL(URL imageURL)
          Changes the splash screen image.
 

Uses of NullPointerException in java.awt.print
 

Methods in java.awt.print that throw NullPointerException
abstract  void PrinterJob.setPageable(Pageable document)
          Queries document for the number of pages and the PageFormat and Printable for each page held in the Pageable instance, document.
 

Uses of NullPointerException in javax.management
 

Methods in javax.management that throw NullPointerException
 boolean ObjectName.apply(ObjectName name)
          Test whether this ObjectName, which may be a pattern, matches another ObjectName.
static ObjectName ObjectName.getInstance(ObjectName name)
          Return an instance of ObjectName that can be used anywhere the given object can be used.
static ObjectName ObjectName.getInstance(String name)
          Return an instance of ObjectName that can be used anywhere an object obtained with new ObjectName(name) can be used.
static ObjectName ObjectName.getInstance(String domain, Hashtable<String,String> table)
          Return an instance of ObjectName that can be used anywhere an object obtained with new ObjectName(domain, table) can be used.
static ObjectName ObjectName.getInstance(String domain, String key, String value)
          Return an instance of ObjectName that can be used anywhere an object obtained with new ObjectName(domain, key, value) can be used.
 String ObjectName.getKeyProperty(String property)
          Obtains the value associated with a key in a key property.
 boolean ObjectName.isPropertyValuePattern(String property)
          Checks whether the value associated with a key in a key property is a pattern.
static String ObjectName.quote(String s)
          Returns a quoted form of the given String, suitable for inclusion in an ObjectName.
static String ObjectName.unquote(String q)
          Returns an unquoted form of the given String.
 

Constructors in javax.management that throw NullPointerException
ObjectName(String name)
          Construct an object name from the given string.
ObjectName(String domain, Hashtable<String,String> table)
          Construct an object name with several key properties from a Hashtable.
ObjectName(String domain, String key, String value)
          Construct an object name with exactly one key property.
 

Uses of NullPointerException in javax.realtime
 

Methods in javax.realtime that throw NullPointerException
 void RelativeTime.addInterarrivalTo(AbsoluteTime destination)
          Deprecated. RTSJ V1.0.1 this method is only required to support the deprecated RationalTime.
 

Uses of NullPointerException in javax.realtime.device
 

Methods in javax.realtime.device that throw NullPointerException
 int RawByteReader.get(int offset, byte[] values)
          Fill the values starting at the address referenced by this instance plus the offset scaled by the element size in bytes and the object's stride.
 int RawByteReader.get(int offset, byte[] values, int start, int count)
          Fill values with data from the memory region, where offset is first byte in the memory region and start is the first index in values.
 int RawDoubleReader.get(int offset, double[] values)
          Fill the values starting at the address referenced by this instance plus the offset scaled by the element size in bytes and the object's stride.
 int RawDoubleReader.get(int offset, double[] values, int start, int count)
          Fill values with data from the memory region, where offset is first double in the memory region and start is the first index in values.
 int RawFloatReader.get(int offset, float[] values)
          Fill the values starting at the address referenced by this instance plus the offset scaled by the element size in bytes and the object's stride.
 int RawFloatReader.get(int offset, float[] values, int start, int count)
          Fill values with data from the memory region, where offset is first float in the memory region and start is the first index in values.
 int RawIntReader.get(int offset, int[] values)
          Fill the values starting at the address referenced by this instance plus the offset scaled by the element size in bytes and the object's stride.
 int RawIntReader.get(int offset, int[] values, int start, int count)
          Fill values with data from the memory region, where offset is first int in the memory region and start is the first index in values.
 int RawLongReader.get(int offset, long[] values)
          Fill the values starting at the address referenced by this instance plus the offset scaled by the element size in bytes and the object's stride.
 int RawLongReader.get(int offset, long[] values, int start, int count)
          Fill values with data from the memory region, where offset is first long in the memory region and start is the first index in values.
 int RawShortReader.get(int offset, short[] values)
          Fill the values starting at the address referenced by this instance plus the offset scaled by the element size in bytes and the object's stride.
 int RawShortReader.get(int offset, short[] values, int start, int count)
          Fill values with data from the memory region, where offset is first short in the memory region and start is the first index in values.
 void RawMemoryFactory.register(RawMemoryRegionFactory factory)
          Register a region factory for the region of the given factory.
 int RawByteWriter.set(int offset, byte[] values)
          Copy values to the raw memory starting at the address referenced by this instance plus the offset scaled by the element size in bytes and the objects stride.
 int RawByteWriter.set(int offset, byte[] values, int start, int count)
          Copy values to the memory region, where offset is first byte in the memory region to write and start is the first index in values from which to read.
 int RawDoubleWriter.set(int offset, double[] values)
          Copy values to the raw memory starting at the address referenced by this instance plus the offset scaled by the element size in bytes and the objects stride.
 int RawDoubleWriter.set(int offset, double[] values, int start, int count)
          Copy values to the memory region, where offset is first double in the memory region to write and start is the first index in values from which to read.
 int RawFloatWriter.set(int offset, float[] values)
          Copy values to the raw memory starting at the address referenced by this instance plus the offset scaled by the element size in bytes and the objects stride.
 int RawFloatWriter.set(int offset, float[] values, int start, int count)
          Copy values to the memory region, where offset is first float in the memory region to write and start is the first index in values from which to read.
 int RawIntWriter.set(int offset, int[] values)
          Copy values to the raw memory starting at the address referenced by this instance plus the offset scaled by the element size in bytes and the objects stride.
 int RawIntWriter.set(int offset, int[] values, int start, int count)
          Copy values to the memory region, where offset is first int in the memory region to write and start is the first index in values from which to read.
 int RawLongWriter.set(int offset, long[] values)
          Copy values to the raw memory starting at the address referenced by this instance plus the offset scaled by the element size in bytes and the objects stride.
 int RawLongWriter.set(int offset, long[] values, int start, int count)
          Copy values to the memory region, where offset is first long in the memory region to write and start is the first index in values from which to read.
 int RawShortWriter.set(int offset, short[] values)
          Copy values to the raw memory starting at the address referenced by this instance plus the offset scaled by the element size in bytes and the objects stride.
 int RawShortWriter.set(int offset, short[] values, int start, int count)
          Copy values to the memory region, where offset is first short in the memory region to write and start is the first index in values from which to read.
 

Uses of NullPointerException in org.xml.sax.helpers
 

Methods in org.xml.sax.helpers that throw NullPointerException
static Parser ParserFactory.makeParser()
          Deprecated. Create a new SAX parser using the `org.xml.sax.parser' system property.
 


aicas logoJamaica 6.4 release 1

aicas GmbH, Karlsruhe, Germany —www.aicas.com
Copyright © 2001-2015 aicas GmbH. All Rights Reserved.