PenProfile 2.x

Uses of Class
java.lang.Object

Packages that use Object
com.livescribe.afp This package consists of classes that interact with Anoto Functionality Document files and related APIs. 
com.livescribe.buttons   
com.livescribe.configuration This package consists of classes and interfaces that provide access to configuration values and specific access to System configuration settings. 
com.livescribe.display This package consists of classes and interfaces that allows applications to render on the pen display. 
com.livescribe.event This package consists of classes and interfaces that broadcast notifications and events to penlets. 
com.livescribe.ext.io Contains I/O-related tools and classes. 
com.livescribe.ext.plugins Contains single-function plugins designed to, among other things, help the developer achieve parity with Livescribe's UI guidelines, and provide easier ways to do more difficult things, such as acquiring and recognizing handwriting from the user. 
com.livescribe.ext.ui Contains classes for conveniently creating menus, managing menu bookmarks, and doing other helpful UI-related things. 
com.livescribe.ext.util Contains miscellaneous helper utilities, including a logging helper, collections classes, and a few threading primitives. 
com.livescribe.geom   
com.livescribe.i18n This package consists of classes and interfaces to aid the internationalization of application resources. 
com.livescribe.icr Provides classes and interfaces for Intelligent Character Recognition (ICR). 
com.livescribe.io   
com.livescribe.penlet This package consists of classes and interfaces that are core to pen application development. 
com.livescribe.storage   
com.livescribe.ui   
com.livescribe.util   
com.sun.cldc.i18n Provides classes for work with character streams. 
com.sun.cldc.i18n.j2me   
com.sun.cldc.i18n.uclc Provides class for converting characters from upper case to low case. 
com.sun.cldc.io Provides base class for all connections. 
com.sun.cldc.io.j2me.socket   
com.sun.cldc.isolate   
com.sun.cldc.util   
com.sun.cldc.util.j2me Provides implementation classes for java.util.Calendar and java.util.TimeZone. 
com.sun.cldchi.io Provides class for System.out implmentation. 
com.sun.cldchi.jvm Provides classes for interaction with VM internals. 
com.sun.cldchi.test   
java.io Provides classes for input and output through data streams. 
java.lang Provides classes that are fundamental to the Java programming language. 
java.lang.ref Provides support for weak references. 
java.util Contains the collection classes, and the date and time facilities. 
javax.microedition.io Classes for the Generic Connection framework. 
javax.microedition.media   
javax.microedition.media.control   
javax.microedition.media.protocol   
 

Uses of Object in com.livescribe.afp
 

Subclasses of Object in com.livescribe.afp
 class Document
          This class encapsulates a paper product and associated metadata.
 class PageAddress
          This class encapsulates the physical address of a page of the Anoto dot space.
 class PageInstance
          This class encapsulates an instance of the page in a particular paper product.
 class PropertyCollection
          This class manages a set of properties for a penlet.
 class Scale
          The Scale class provides utility functions for converting between Anoto Units (AU) and inches/millimeters.
 

Methods in com.livescribe.afp with parameters of type Object
abstract  boolean PropertyCollection.addProperty(long propId, Object value)
          Adds a property to the collection.
abstract  boolean PropertyCollection.setProperty(long propId, Object value)
          Sets a property value.
abstract  boolean PropertyCollection.setProperty(long propId, Object value, boolean overwrite)
          Sets a property value.
 

Uses of Object in com.livescribe.buttons
 

Subclasses of Object in com.livescribe.buttons
 class BookmarkInfo
          This is a convenience class that allows the creation of bookmark information without having to implement the interface yourself.
 class ButtonPABDisplay
          This can display a configurable text button.
 class DrawnButtonController
          A plugin that manages the display, presentation, and processing of new prompt and believe buttons.
 

Uses of Object in com.livescribe.configuration
 

Subclasses of Object in com.livescribe.configuration
 class Config
          This class contains utility functions for retrieving and storing typed data.
 class PaperTablet
           
 class SystemConfig
          This class provides the ability to access and modify system configuration values.
 

Fields in com.livescribe.configuration declared as Object
static Object SystemConfig.DEFAULT_VALUE_AUDIO_MUTED
          Object to maintain the system default value (on/off) for audio mute.
static Object SystemConfig.DEFAULT_VALUE_AUDIO_QUALITY
          Object to maintain the system default value for audio quality.
static Object SystemConfig.DEFAULT_VALUE_AUDIO_VOLUME
          Object to maintain the system default value for audio volume.
static Object SystemConfig.DEFAULT_VALUE_DATE_FORMAT
          Object to maintain the system default value for date format.
static Object SystemConfig.DEFAULT_VALUE_DISPLAY_BRIGHTNESS
          Object to maintain the system default value for display brightness.
static Object SystemConfig.DEFAULT_VALUE_DISPLAY_ORIENTATION
          Object to maintain the system default value for display orientation.
static Object SystemConfig.DEFAULT_VALUE_LAUNCHLINE
          Object to maintain the system default value (on/off) for LaunchLine.
static Object SystemConfig.DEFAULT_VALUE_MIC_SENSITIVITY
          Object to maintain the system default value for microphone sensitivity.
static Object SystemConfig.DEFAULT_VALUE_PLAYBACK_LATENCY
          Object to maintain the system default value (on/off) for playback latency.
static Object SystemConfig.DEFAULT_VALUE_SCROLL_SPEED
          Object to maintain the system default value for scroll speed.
static Object SystemConfig.DEFAULT_VALUE_TIME_FORMAT
          Object to maintain the system default value for date format.
static Object SystemConfig.DEFAULT_VALUE_VOICE_MENUS
          Object to maintain the system default value (on/off) for voice menus.
 

Uses of Object in com.livescribe.display
 

Subclasses of Object in com.livescribe.display
 class AttributedText
          AttributedText contains text that should be rendered with different attributes.
static class AttributedText.Attribute
          Attribute encapsulates the font attribute associated with the the text in an attribute/text pair.
 class BrowseList
          BrowseList is a UI component that enables a penlet to display a list of items and provide user navigation within the list.
protected static class BrowseList.Insets
          Insets defines the decoration region for a menu item and the title for the BrowseList.
static class BrowseList.Title
          Title encapsulates the title for a browse list.
 class Canvas
          This is a base class for applications that need to create their own display content.
 class Display
          Display encapsulates the display device of the pen.
 class Displayable
          A Displayable object can be placed on the pen display.
 class Font
          Font encapsulates the metrics as well as support for rendering (see TextRenderer ) text on a destination surface.
 class Graphics
          The Graphics class provides 2D drawing functionality.
 class Image
          Image represents a image buffer that can hold pixel data.
 class Transition
          Transition encapsulates screen transition.
 

Methods in com.livescribe.display that return Object
 Object BrowseList.getFocusItem()
          Gets the item that currently has focus.
 Object BrowseList.Title.getText()
          Returns the text for the title.
 Object BrowseList.Item.getText()
          Returns the text that should be displayed when this Item has focus.
static Object AttributedText.parseEnriched(String s, Font font)
          Parses enriched text and returns the string or a new AttributedText, as appropriate.
 

Methods in com.livescribe.display with parameters of type Object
protected  void BrowseList.drawItem(Graphics g, BrowseList.Item item, Image icon, Object text, int x, int y)
          Renders the item contents on the graphics.
 

Uses of Object in com.livescribe.event
 

Subclasses of Object in com.livescribe.event
 class CoordinateEvent
           
 class DocumentEvent
          This event type provides support for document events.
 class Event
          This is the base class for penlet and menu events.
 class HardwareEvent
          The HardwareEvent class extends the SystemEvent class to encapsulate hardware specific events.
 class MenuEvent
          This represents events that occur by using the NavPlus menuing system.
 class PaperEvent
          Provides support for all paper-related events.
 class PenletEvent
          This event type provides support for timestamp and size data.
 class PenTipEvent
          This event type provides support for pen tip events.
 class RegionEvent
          This event type provides support for region events.
 class StrokeEvent
          This event type provides support for stroke events.
 class SystemEvent
          This represents system-specific events.
static class SystemEvent.Config
          This class encapsulates system configuration values as SystemEvent objects.
 

Fields in com.livescribe.event declared as Object
 Object SystemEvent.Config.propertyValue
          The property value.
 

Constructors in com.livescribe.event with parameters of type Object
SystemEvent.Config(String property, Object value)
          Creates a new Config event having the SystemEvent.SE_PROPERTY_CHANGED type.
 

Uses of Object in com.livescribe.ext.io
 

Subclasses of Object in com.livescribe.ext.io
 class BufferedInputStream
          This adds the ability to buffer input.
 

Uses of Object in com.livescribe.ext.plugins
 

Subclasses of Object in com.livescribe.ext.plugins
 class AcquireHWPlugin
          A penlet plugin that performs common functions.
 

Methods in com.livescribe.ext.plugins that return Object
 Object AcquireHWPlugin.DisplayFilter.filter(String result)
          This filters the result for use when HWR results are displayed on the screen.
 

Uses of Object in com.livescribe.ext.ui
 

Subclasses of Object in com.livescribe.ext.ui
 class Menu
          A class to make it easier to build browse list-based menus.
protected  class Menu.MenuBrowseList
          A special BrowseList implementation that allows the menu to access some protected methods and override others.
protected static class Menu.MenuItem
          An implementation of a browse list item.
 class MenuBookmarkHandlerPlugin
          A plugin that handles menu bookmark activation.
 class RadioMenu
          A menu where only one item can be selected at once.
 class SlotMachine
          This class enables most types of displays that involves N scrolling reels with a number of items in each reel.
 

Methods in com.livescribe.ext.ui that return Object
 Object Menu.getMetadata()
          Returns the metadata associated with this menu.
 Object Menu.getMetadata(int index)
          Gets the metadata associated with the specified menu item.
 Object Menu.MenuItem.getText()
           
 

Methods in com.livescribe.ext.ui with parameters of type Object
 void Menu.add(Object text)
          Adds a non-selectable item to the menu.
 void Menu.add(Object text, Image icon, String audio, Menu.MenuAction action, Menu submenu)
          Adds a new item to the menu.
 void Menu.add(Object text, Menu.MenuAction action)
          Adds a non-selectable item to the menu.
 void Menu.add(Object text, Menu submenu)
          Adds a selectable item to the menu.
 void Menu.setMetadata(int index, Object data)
          Attaches some arbitrary metadata to a specific menu item.
 void Menu.setMetadata(Object data)
          Attaches some arbitrary metadata to this menu.
 void Menu.setText(int index, Object text)
          Sets the text for the specified menu item.
 

Constructors in com.livescribe.ext.ui with parameters of type Object
Menu(Object title)
          Creates a new menu having the specified title.
 

Uses of Object in com.livescribe.ext.util
 

Subclasses of Object in com.livescribe.ext.util
 class Latch
          A latch that can be used for thread signalling.
 class LinkedList
          LinkedList implements the standard Java SE class
 class Lock
          Implementation of an exclusive lock.
 class Log
          A convenience class that provides access to the penlet's Logger instance.
 class PriorityQueue
          PriorityQueue implements the standard Java SE class Underlying implementation is a standard heap
 

Methods in com.livescribe.ext.util that return Object
 Object PriorityQueue.clone()
          Create a shallow copy of the array
 Object LinkedList.clone()
          Produces a shallow copy of the list
 Object Cloneable.clone()
          Should create a shallow copy of the object
 Object Queue.element()
           
 Object PriorityQueue.element()
          Retrieves but does not remove the first element in the queue
 Object LinkedList.element()
          Peeks at the first element
 Object List.get(int index)
           
 Object LinkedList.get(int index)
          Gets the object at index
 Object LinkedList.getFirst()
          Gets the first element
 Object LinkedList.getLast()
          Gets the last (tail) element
 Object ListIterator.next()
           
 Object Iterator.next()
           
 Object Queue.peek()
           
 Object PriorityQueue.peek()
          Looks at first element but does not remove
 Object LinkedList.peek()
          Peeks at the first element
 Object Queue.poll()
           
 Object PriorityQueue.poll()
          Gets the first element from queue
 Object LinkedList.poll()
          Removes the first object from the list
 Object ListIterator.previous()
           
 Object Queue.remove()
           
 Object PriorityQueue.remove()
          Removes the first element from the queue
 Object LinkedList.remove()
          Removes the first object from the list
 Object List.remove(int index)
           
 Object LinkedList.remove(int index)
          Removes the object at index
 Object LinkedList.removeFirst()
          Removes the first object from the list
 Object LinkedList.removeLast()
          Removes the last (tail) object from the list
 Object List.set(int index, Object element)
           
 Object LinkedList.set(int index, Object element)
          Replace the object at index with the supplied object
 Object[] PriorityQueue.toArray()
          Returns an array of all the objects in the queue
 Object[] List.toArray()
           
 Object[] LinkedList.toArray()
          Returns an array containing the objects in the list
 Object[] Collection.toArray()
           
 

Methods in com.livescribe.ext.util with parameters of type Object
 void List.add(int index, Object element)
           
 void LinkedList.add(int index, Object element)
          Inserts supplied object at the specified index
 boolean PriorityQueue.add(Object element)
          Inserts object into queue
 void ListIterator.add(Object o)
           
 boolean List.add(Object o)
           
 boolean LinkedList.add(Object o)
          Adds object to the end of the list
 boolean Collection.add(Object e)
           
 void LinkedList.addFirst(Object o)
          Inserts object in the beginning of the list
 void LinkedList.addLast(Object o)
          Appends object to the end of list
 int Comparable.compareTo(Object o)
          Comparable should be implemented to return < 0 if this object is smaller than o and to return > 0 if the second object is smaller than this
 boolean PriorityQueue.contains(Object o)
          Returns true if object exists in queue
 boolean List.contains(Object o)
           
 boolean LinkedList.contains(Object o)
          Returns if the object exist in the list or not
 boolean Collection.contains(Object o)
           
 boolean List.equals(Object o)
           
 boolean LinkedList.equals(Object o)
          Equals implementation
 boolean Collection.equals(Object o)
           
 int List.indexOf(Object o)
           
 int LinkedList.indexOf(Object o)
          Gets the index of the object.
 int List.lastIndexOf(Object o)
           
 int LinkedList.lastIndexOf(Object o)
          Returns the last occurrence of object in list.
 boolean Queue.offer(Object o)
           
 boolean PriorityQueue.offer(Object element)
          Inserts object into queue
 void LinkedList.offer(Object o)
          Appends object to the end of list
 boolean PriorityQueue.remove(Object o)
          Removes a single object from the queue
 boolean List.remove(Object o)
           
 boolean LinkedList.remove(Object o)
          Removes the first occurence of the object from the list
 boolean Collection.remove(Object o)
           
 Object List.set(int index, Object element)
           
 Object LinkedList.set(int index, Object element)
          Replace the object at index with the supplied object
 void ListIterator.set(Object o)
           
 

Constructors in com.livescribe.ext.util with parameters of type Object
LinkedList(Object[] o)
           
PriorityQueue(Object[] o)
           
 

Uses of Object in com.livescribe.geom
 

Subclasses of Object in com.livescribe.geom
 class Coordinate
          Represents a coordinate in some coordinate system.
 class Ellipse
          This class describes an ellipse with the upper left and lower right points.
 class LineSegment
          This class describes a line segment with the upper left and lower right points.
 class OctagonBoundsStrategy
          A bounds strategy that calculates an octagonal bounding polygon around a set of Shapes.
 class Point
          This class describes a point in cartesian space.
 class Polygon
          This class describes a polygon.
 class PolyLine
          This class describes a multi-segment line, or polyline.
 class Rectangle
          This class describes a rectangle by using the upper left and lower right points.
 class RectangleBoundsStrategy
          A bounds strategy that calculates a rectangular bounding polygon around a set of Shapes.
 class Shape
          This class is the superclass for all shapes handled by the system.
 class Stroke
          This class describes a stroke, or series of points.
 

Methods in com.livescribe.geom with parameters of type Object
 boolean Rectangle.equals(Object obj)
          Returns whether the given object is considered equal to this rectangle.
 

Uses of Object in com.livescribe.i18n
 

Subclasses of Object in com.livescribe.i18n
 class AudibleResource
          This class defines a resource that has been localized for a particular Locale and that can be played by the speakers.
 class CollationKey
          A CollationKey represents a String under the rules of a specific Collator object.
 class Collator
          The Collator class performs locale-sensitive String comparison.
 class DisplayableResource
          This class defines a resource that has been localized for a particular Locale and that can be rendered on the display.
 class Formatter
           
 class ImageResource
          This class defines an image resource that has been localized for a particular Locale and that can be rendered on the display.
 class Locale
          A Locale object represents a specific geographical, political, or cultural region.
 class Resource
          This class defines a resource that has been localized for a particular Locale.
 class ResourceBundle
          ResourceBundle encapsulates the localized resources for an application.
 class SoundResource
          This class defines an audible resource that contains audio samples, compressed or uncompressed, that can be read from an input stream.
 class TextResource
          This class defines a text resource that has been localized for a particular Locale and that can be rendered on the display.
 

Methods in com.livescribe.i18n that return Object
 Object DisplayableResource.getDisplayable()
          Gets the localized displayable object.
 

Methods in com.livescribe.i18n with parameters of type Object
 int Collator.compare(Object o1, Object o2)
          Compares its two arguments for order.
 boolean Locale.equals(Object obj)
           
 

Uses of Object in com.livescribe.icr
 

Subclasses of Object in com.livescribe.icr
 class DetailedResult
          This class is not currently supported, but may be supported in a future release.
static class DetailedResult.CandidateEnumeration
          An Enumeration of recognition candidates.
 class ICRContext
          This class allows the application to use the Intelligent Character Recognition (ICR) engine.
 class Language
          Represents a language localized to a specific region or country.
 class LKDynamicResource
          A Linguistic Knowledge resource is used to enable the recognition of a set of words.
 class SKDynamicResource
          This class is not currently supported, but may be supported in a future release.
 class WritingStyle
          This class defines the writing styles support by the Intelligent Character Recognition (ICR) feature.
 

Uses of Object in com.livescribe.io
 

Subclasses of Object in com.livescribe.io
 class FastIOHelper
          A native-backed helper class that quickly reads primitive types into an array from an InputStream.
 

Uses of Object in com.livescribe.penlet
 

Subclasses of Object in com.livescribe.penlet
 class AbstractPenletPlugin
          An abstract base class for penlet plugins that provides a basic implementation for the plugin state.
 class Logger
          Logger provides methods to log application messages.
 class PenHardware
          PenHardware can be retrieved from PenletContext.
 class Penlet
          Penlet provides the lifecycle methods for a pen application.
 class PenletContext
          PenletContext exposes services to the pen application.
 class PenletPlugin
          A base class for all penlet plugins.
 class PenletStateChangeException
          Signals that a requested penlet or plugin state change failed.
 class QuickLaunch
          Allows editing of the dynamic Quick Launch menu items associated with a penlet.
static class QuickLaunch.Entry
           
 class Region
          This class encapsulates a region of interest for an application.
 class RegionCollection
          The RegionCollection class enables the manipulation of your regions on a page associated with the application.
 

Methods in com.livescribe.penlet that return Object
abstract  Object PenletContext.getProperty(String prop)
          Gets the value of the specified property.
 

Methods in com.livescribe.penlet with parameters of type Object
abstract  void Penlet.activateApp(int reason, Object[] params)
          Activates the application.
 void PenletContext.addMetricData(String metricName, Object data)
          Add a metric with data.
abstract  void PenletContext.addMetricData(String metricName, Object[] data)
          Add metric data associated with the penlet.
 boolean Region.equals(Object obj)
          Checks whether the given object is equal to this region.
abstract  void PenletContext.setProperty(String prop, Object value)
          Sets a property specific to this instance of a penlet context.
 

Uses of Object in com.livescribe.storage
 

Subclasses of Object in com.livescribe.storage
 class StrokeStorage
          This class describes the system stroke storage.
 

Uses of Object in com.livescribe.ui
 

Subclasses of Object in com.livescribe.ui
 class BatteryIndicator
          A battery indicator component.
 class DateIndicator
           
 class DiskUsageIndicator
           
 class MediaPlayer
          MediaPlayer allows various media to be played.
 class ScrollLabel
          ScrollLabel allows both text and images to be displayed on the screen.
 class TimeIndicator
          A time indicator component.
 class VolumeIndicator
           
 

Uses of Object in com.livescribe.util
 

Subclasses of Object in com.livescribe.util
 class InactivityTimer
          This class implements a timer thread that can be used to monitor application activity.
 class MathFunctions
          MathFunctions provide rounding and scientific methods
 class TapAndHoldGesture
          This can be used by applications to check if the user has tapped at a point on the paper and held the pen at the same point for a specified period of time.
 class Timer
          A facility for threads to schedule tasks for future execution in a background thread.
 class TimerTask
          A task that can be scheduled for one-time or repeated execution by a Timer.
 class Tokenizer
          Tokenizer allows to tokenize a String Takes a string as input and tokenizes it into an array of substrings using a specified delimiter character.
 

Uses of Object in com.sun.cldc.i18n
 

Subclasses of Object in com.sun.cldc.i18n
 class Helper
          This class provides general helper functions for the J2ME environment.
 class StreamReader
          General prototype for character converting stream readers.
 class StreamWriter
          General prototype for character converting stream writers.
 

Uses of Object in com.sun.cldc.i18n.j2me
 

Subclasses of Object in com.sun.cldc.i18n.j2me
 class ISO8859_1_Reader
          Default J2ME class for input stream readers
 class ISO8859_1_Writer
          Default J2ME class for output stream writers.
 class UTF8_Reader
          Provides UTF-8 decoding.
 class UTF8_Writer
          Encodes characters in UTF-8.
 

Uses of Object in com.sun.cldc.i18n.uclc
 

Subclasses of Object in com.sun.cldc.i18n.uclc
 class DefaultCaseConverter
          Default class converting the case of characters.
 

Uses of Object in com.sun.cldc.io
 

Subclasses of Object in com.sun.cldc.io
 class ResourceInputStream
          Input stream class for accessing resource files in classpath.
 

Fields in com.sun.cldc.io declared as Object
 Object ResourceInputStream.fileDecoder
           
 

Constructors in com.sun.cldc.io with parameters of type Object
ResourceInputStream(Object decoder)
           
 

Uses of Object in com.sun.cldc.io.j2me.socket
 

Subclasses of Object in com.sun.cldc.io.j2me.socket
 class Protocol
          Connection to the J2ME socket API.
 

Uses of Object in com.sun.cldc.isolate
 

Subclasses of Object in com.sun.cldc.isolate
 class IllegalIsolateStateException
          Signals that a method of Isolate has been invoked at an illegal or inappropriate time.
 class Isolate
          
 class IsolateResourceError
          IsolateResourceError is thrown when the resource requirements required for an action cannot be fulfilled.
 class IsolateStartupException
          An exception thrown when the implementation is unable to start execution of a new isolate due to an error or exceptional condition in the bootstrap code for the new isolate (i.e., before the application starts).
 class Util
           
 

Uses of Object in com.sun.cldc.util
 

Subclasses of Object in com.sun.cldc.util
 class Semaphore
           
 

Uses of Object in com.sun.cldc.util.j2me
 

Subclasses of Object in com.sun.cldc.util.j2me
 class CalendarImpl
          This class is an implementation of the subsetted CLDC 1.1 Calendar class.
 class TimeZoneImpl
          This class provides the time zone implementations for J2ME CLDC/MIDP.
 

Uses of Object in com.sun.cldchi.io
 

Subclasses of Object in com.sun.cldchi.io
 class ConsoleOutputStream
           
 

Uses of Object in com.sun.cldchi.jvm
 

Subclasses of Object in com.sun.cldchi.jvm
 class DebuggerInvoke
           
 class JVM
           
 class MethodTrap
          Java API to support run-time method trapping from Java code.
 

Methods in com.sun.cldchi.jvm with parameters of type Object
static void JVM.unchecked_obj_arraycopy(Object[] src, int srcOffset, Object[] dst, int dstOffset, int length)
           
static void JVM.unchecked_obj_arraycopy(Object[] src, int srcOffset, Object[] dst, int dstOffset, int length)
           
 

Uses of Object in com.sun.cldchi.test
 

Subclasses of Object in com.sun.cldchi.test
 class Dummy
           
 class Reflect
           
 

Methods in com.sun.cldchi.test that return Object
 Object Reflect.getObjectValue()
           
 

Uses of Object in java.io
 

Subclasses of Object in java.io
 class ByteArrayInputStream
          A ByteArrayInputStream contains an internal buffer that contains bytes that may be read from the stream.
 class ByteArrayOutputStream
          This class implements an output stream in which the data is written into a byte array.
 class DataInputStream
          A data input stream lets an application read primitive Java data types from an underlying input stream in a machine-independent way.
 class DataOutputStream
          A data output stream lets an application write primitive Java data types to an output stream in a portable way.
 class EOFException
          Signals that an end of file or end of stream has been reached unexpectedly during input.
 class InputStream
          This abstract class is the superclass of all classes representing an input stream of bytes.
 class InputStreamReader
          An InputStreamReader is a bridge from byte streams to character streams: It reads bytes and translates them into characters.
 class InterruptedIOException
          Signals that an I/O operation has been interrupted.
 class IOException
          Signals that an I/O exception of some sort has occurred.
 class OutputStream
          This abstract class is the superclass of all classes representing an output stream of bytes.
 class OutputStreamWriter
          An OutputStreamWriter is a bridge from character streams to byte streams: Characters written to it are translated into bytes.
 class PrintStream
          A PrintStream adds functionality to another output stream, namely the ability to print representations of various data values conveniently.
 class Reader
          Abstract class for reading character streams.
 class UnsupportedEncodingException
          The Character Encoding is not supported.
 class UTFDataFormatException
          Signals that a malformed UTF-8 string has been read in a data input stream or by any class that implements the data input interface.
 class Writer
          Abstract class for writing to character streams.
 

Fields in java.io declared as Object
protected  Object Writer.lock
          The object used to synchronize operations on this stream.
protected  Object Reader.lock
          The object used to synchronize operations on this stream.
 

Methods in java.io with parameters of type Object
 void PrintStream.print(Object obj)
          Print an object.
 void PrintStream.println(Object x)
          Print an Object and then terminate the line.
 

Constructors in java.io with parameters of type Object
Reader(Object lock)
          Create a new character-stream reader whose critical sections will synchronize on the given object.
Writer(Object lock)
          Create a new character-stream writer whose critical sections will synchronize on the given object.
 

Uses of Object in java.lang
 

Subclasses of Object in java.lang
 class ArithmeticException
          Thrown when an exceptional arithmetic condition has occurred.
 class ArrayIndexOutOfBoundsException
          Thrown to indicate that an array has been accessed with an illegal index.
 class ArrayStoreException
          Thrown to indicate that an attempt has been made to store the wrong type of object into an array of objects.
 class Boolean
          The Boolean class wraps a value of the primitive type boolean in an object.
 class Byte
          The Byte class is the standard wrapper for byte values.
 class Character
          The Character class wraps a value of the primitive type char in an object.
 class Class
          Instances of the class Class represent classes and interfaces in a running Java application.
 class ClassCastException
          Thrown to indicate that the code has attempted to cast an object to a subclass of which it is not an instance.
 class ClassNotFoundException
          Thrown when an application tries to load in a class through its string name using the forName method in class Class but no definition for the class with the specified name could be found.
 class Double
          The Double class wraps a value of the primitive type double in an object.
 class Error
          An Error is a subclass of Throwable that indicates serious problems that a reasonable application should not try to catch.
 class Exception
          The class Exception and its subclasses are a form of Throwable that indicates conditions that a reasonable application might want to catch.
 class Float
          The Float class wraps a value of primitive type float in an object.
 class IllegalAccessException
          Thrown when an application tries to load in a class, but the currently executing method does not have access to the definition of the specified class, because the class is not public and in another package.
 class IllegalArgumentException
          Thrown to indicate that a method has been passed an illegal or inappropriate argument.
 class IllegalMonitorStateException
          Thrown to indicate that a thread has attempted to wait on an object's monitor or to notify other threads waiting on an object's monitor without owning the specified monitor.
 class IllegalThreadStateException
          Thrown to indicate that a thread is not in an appropriate state for the requested operation.
 class IndexOutOfBoundsException
          Thrown to indicate that an index of some sort (such as to an array, to a string, or to a vector) is out of range.
 class InstantiationException
          Thrown when an application tries to create an instance of a class using the newInstance method in class Class, but the specified class object cannot be instantiated because it is an interface or is an abstract class.
 class Integer
          The Integer class wraps a value of the primitive type int in an object.
 class InterruptedException
          Thrown when a thread is waiting, sleeping, or otherwise paused for a long time and another thread interrupts it.
 class Long
          The Long class wraps a value of the primitive type long in an object.
 class Math
          The class Math contains methods for performing basic numeric operations.
 class NegativeArraySizeException
          Thrown if an application tries to create an array with negative size.
 class NoClassDefFoundError
          Thrown if the Java Virtual Machine tries to load in the definition of a class (as part of a normal method call or as part of creating a new instance using the new expression) and no definition of the class could be found.
 class NullPointerException
          Thrown when an application attempts to use null in a case where an object is required.
 class NumberFormatException
          Thrown to indicate that the application has attempted to convert a string to one of the numeric types, but that the string does not have the appropriate format.
 class OutOfMemoryError
          Thrown when the Java Virtual Machine cannot allocate an object because it is out of memory, and no more memory could be made available by the garbage collector.
 class Runtime
          Every Java application has a single instance of class Runtime that allows the application to interface with the environment in which the application is running.
 class RuntimeException
          RuntimeException is the superclass of those exceptions that can be thrown during the normal operation of the Java Virtual Machine.
 class SecurityException
          Thrown by the system to indicate a security violation.
 class Short
          The Short class is the standard wrapper for short values.
 class String
          The String class represents character strings.
 class StringBuffer
          A string buffer implements a mutable sequence of characters.
 class StringIndexOutOfBoundsException
          Thrown by the charAt method in class String and by other String methods to indicate that an index is either negative or greater than or equal to the size of the string.
 class System
          The System class contains several useful class fields and methods.
 class Thread
          A thread is a thread of execution in a program.
 class Throwable
          The Throwable class is the superclass of all errors and exceptions in the Java language.
 class VirtualMachineError
          Thrown to indicate that the Java Virtual Machine is broken or has run out of resources necessary for it to continue operating.
 

Methods in java.lang that return Object
 Object Class.newInstance()
          Creates a new instance of a class.
 

Methods in java.lang with parameters of type Object
 StringBuffer StringBuffer.append(Object obj)
          Appends the string representation of the Object argument to this string buffer.
static void System.arraycopy(Object src, int srcOffset, Object dst, int dstOffset, int length)
          Copies an array from the specified source array, beginning at the specified position, to the specified position of the destination array.
 boolean String.equals(Object anObject)
          Compares this string to the specified object.
 boolean Short.equals(Object obj)
          Compares this object to the specified object.
 boolean Object.equals(Object obj)
          Indicates whether some other object is "equal to" this one.
 boolean Long.equals(Object obj)
          Compares this object against the specified object.
 boolean Integer.equals(Object obj)
          Compares this object to the specified object.
 boolean Float.equals(Object obj)
          Compares this object against some other object.
 boolean Double.equals(Object obj)
          Compares this object against the specified object.
 boolean Character.equals(Object obj)
          Compares this object against the specified object.
 boolean Byte.equals(Object obj)
          Compares this object to the specified object.
 boolean Boolean.equals(Object obj)
          Returns true if and only if the argument is not null and is a Boolean object that represents the same boolean value as this object.
static int System.identityHashCode(Object x)
          Returns the same hashcode for the given object as would be returned by the default method hashCode(), whether or not the given object's class overrides hashCode().
 StringBuffer StringBuffer.insert(int offset, Object obj)
          Inserts the string representation of the Object argument into this string buffer.
 boolean Class.isInstance(Object obj)
          Determines if the specified Object is assignment-compatible with the object represented by this Class.
static String String.valueOf(Object obj)
          Returns the string representation of the Object argument.
 

Uses of Object in java.lang.ref
 

Subclasses of Object in java.lang.ref
 class Reference
          Abstract base class for reference objects.
 class WeakReference
          This class provides support for weak references.
 

Methods in java.lang.ref that return Object
 Object WeakReference.get()
          Returns this reference object's referent.
 Object Reference.get()
          Returns this reference object's referent.
 

Constructors in java.lang.ref with parameters of type Object
WeakReference(Object referent)
          Creates a new weak reference that refers to the given object.
 

Uses of Object in java.util
 

Subclasses of Object in java.util
 class Calendar
          Calendar is an abstract base class for converting between a Date object and a set of integer fields such as YEAR, MONTH, DAY, HOUR, and so on.
 class Date
          The class Date represents a specific instant in time, with millisecond precision.
 class EmptyStackException
          Thrown by methods in the Stack class to indicate that the stack is empty.
 class Hashtable
          This class implements a hashtable, which maps keys to values.
 class NoSuchElementException
          Thrown by the nextElement method of an Enumeration to indicate that there are no more elements in the enumeration.
 class Random
          An instance of this class is used to generate a stream of pseudorandom numbers.
 class Stack
          The Stack class represents a last-in-first-out (LIFO) stack of objects.
 class TimeZone
          TimeZone represents a time zone offset, and also figures out daylight savings.
 class Vector
          The Vector class implements a growable array of objects.
 

Fields in java.util declared as Object
protected  Object[] Vector.elementData
          The array buffer into which the components of the vector are stored.
 

Methods in java.util that return Object
 Object Vector.elementAt(int index)
          Returns the component at the specified index.
 Object Vector.firstElement()
          Returns the first component of this vector.
 Object Hashtable.get(Object key)
          Returns the value to which the specified key is mapped in this hashtable.
 Object Vector.lastElement()
          Returns the last component of the vector.
 Object Enumeration.nextElement()
          Returns the next element of this enumeration if this enumeration object has at least one more element to provide.
 Object Stack.peek()
          Looks at the object at the top of this stack without removing it from the stack.
 Object Stack.pop()
          Removes the object at the top of this stack and returns that object as the value of this function.
 Object Stack.push(Object item)
          Pushes an item onto the top of this stack.
 Object Hashtable.put(Object key, Object value)
          Maps the specified key to the specified value in this hashtable.
 Object Hashtable.remove(Object key)
          Removes the key (and its corresponding value) from this hashtable.
 

Methods in java.util with parameters of type Object
 void Vector.addElement(Object obj)
          Adds the specified component to the end of this vector, increasing its size by one.
 boolean Calendar.after(Object when)
          Compares the time field records.
 boolean Calendar.before(Object when)
          Compares the time field records.
 boolean Vector.contains(Object elem)
          Tests if the specified object is a component in this vector.
 boolean Hashtable.contains(Object value)
          Tests if some key maps into the specified value in this hashtable.
 boolean Hashtable.containsKey(Object key)
          Tests if the specified object is a key in this hashtable.
 void Vector.copyInto(Object[] anArray)
          Copies the components of this vector into the specified array.
 boolean Date.equals(Object obj)
          Compares two dates for equality.
 boolean Calendar.equals(Object obj)
          Compares this calendar to the specified object.
 Object Hashtable.get(Object key)
          Returns the value to which the specified key is mapped in this hashtable.
 int Vector.indexOf(Object elem)
          Searches for the first occurrence of the given argument, testing for equality using the equals method.
 int Vector.indexOf(Object elem, int index)
          Searches for the first occurrence of the given argument, beginning the search at index, and testing for equality using the equals method.
 void Vector.insertElementAt(Object obj, int index)
          Inserts the specified object as a component in this vector at the specified index.
 int Vector.lastIndexOf(Object elem)
          Returns the index of the last occurrence of the specified object in this vector.
 int Vector.lastIndexOf(Object elem, int index)
          Searches backwards for the specified object, starting from the specified index, and returns an index to it.
 Object Stack.push(Object item)
          Pushes an item onto the top of this stack.
 Object Hashtable.put(Object key, Object value)
          Maps the specified key to the specified value in this hashtable.
 Object Hashtable.remove(Object key)
          Removes the key (and its corresponding value) from this hashtable.
 boolean Vector.removeElement(Object obj)
          Removes the first occurrence of the argument from this vector.
 int Stack.search(Object o)
          Returns the 1-based position where an object is on this stack.
 void Vector.setElementAt(Object obj, int index)
          Sets the component at the specified index of this vector to be the specified object.
 

Uses of Object in javax.microedition.io
 

Subclasses of Object in javax.microedition.io
 class ConnectionNotFoundException
          This class is used to signal that a connection target cannot be found, or the protocol type is not supported.
 class Connector
          This class is factory for creating new Connection objects.
 

Uses of Object in javax.microedition.media
 

Subclasses of Object in javax.microedition.media
 class Manager
           
 class MediaException
           
 

Methods in javax.microedition.media with parameters of type Object
 void PlayerListener.playerUpdate(Player player, String event, Object eventData)
           
 

Uses of Object in javax.microedition.media.control
 

Methods in javax.microedition.media.control that return Object
 Object VideoControl.initDisplayMode(int mode, Object arg)
          Initialize the mode on how the video is displayed.
 Object GUIControl.initDisplayMode(int mode, Object arg)
          Initialize the mode on how the GUI is displayed.
 

Methods in javax.microedition.media.control with parameters of type Object
 Object VideoControl.initDisplayMode(int mode, Object arg)
          Initialize the mode on how the video is displayed.
 Object GUIControl.initDisplayMode(int mode, Object arg)
          Initialize the mode on how the GUI is displayed.
 

Uses of Object in javax.microedition.media.protocol
 

Subclasses of Object in javax.microedition.media.protocol
 class ContentDescriptor
          A ContentDescriptor identifies media data containers.
 class DataSource
          A DataSource is an abstraction for media protocol-handlers.
 


PenProfile 2.x

Copyright © 2010 Livescribe Inc. All Rights Reserved.
Confidential and subject to NDA.