2010 FRC Java API


Uses of Class
java.lang.Class

Packages that use Class
com.sun.cldc.jna The CLDC/JNA package contains classes that help import native data structures and functions from Java code without writing C code. 
com.sun.squawk.peripheral   
java.lang MID Profile Language Classes included from Java 2 Standard Edition. 
 

Uses of Class in com.sun.cldc.jna
 

Methods in com.sun.cldc.jna with parameters of type Class
protected static int[] DynamicStructure.initLayout(Class c, int numFields)
          Read the C layout structure into a Java array.
static Library Native.loadLibrary(String name, Class interfaceClass)
           
static Structure Function.returnStruct(Class klass, int ptr)
          Standard conversion function that creates an structure instance of type klass from a C address ptr.
 

Uses of Class in com.sun.squawk.peripheral
 

Methods in com.sun.squawk.peripheral with parameters of type Class
 IPeripheral[] PeripheralRegistry.getAll(Class type)
          Return all peripherals of type type.
 IPeripheral PeripheralRegistry.getSingleton(Class type)
           
 void PeripheralRegistry.removeAll(Class type)
           
 

Uses of Class in java.lang
 

Methods in java.lang that return Class
static Class Class.forName(String className)
          Returns the Class object associated with the class with the given string name.
 Class Object.getClass()
          Returns the runtime class of an object.
 

Methods in java.lang with parameters of type Class
 boolean Class.isAssignableFrom(Class cls)
          Determines if the class or interface represented by this Class object is either the same as, or is a superclass or superinterface of, the class or interface represented by the specified Class parameter.
 


2010 FRC Java API


Copyright © 2006-2009 Sun Microsystems, Inc. All Rights Reserved.