00001 00002 /* 00003 * Copyright 2006 Phidgets Inc. All rights reserved. 00004 */ 00005 00006 package com.phidgets; 00007 import java.util.Iterator; 00008 import java.util.LinkedList; 00009 import com.phidgets.event.*; 00020 public final class TextLEDPhidget extends Phidget 00021 { 00022 public TextLEDPhidget () throws PhidgetException 00023 { 00024 super (create ()); 00025 } 00026 private static native long create () throws PhidgetException; 00034 public native int getRowCount () throws PhidgetException; 00042 public native int getColumnCount () throws PhidgetException; 00049 public native int getBrightness () throws PhidgetException; 00056 public native void setBrightness (int brightness) throws PhidgetException; 00064 public native void setDisplayString (int index, String text) throws PhidgetException; 00065 private final void enableDeviceSpecificEvents (boolean b) 00066 { 00067 } 00068 }