Beispiel #1
0
 public static void skip( ClassFileReader reader, int skip_count )
 {
     Bard.log( "TODO: NativeFileReader::skip()" );
 }
Beispiel #2
0
 public static int read( ClassFileReader reader, char[] array, int index, int count )
 {
     Bard.log( "TODO: NativeFileReader::read(char[],...)" );
       return 0;
 }
Beispiel #3
0
 public static int remaining( ClassFileReader reader )
 {
     Bard.log( "TODO: NativeFileReader::remaining()" );
       return 0;
 }
Beispiel #4
0
 public static int position( ClassFileReader reader )
 {
     Bard.log( "TODO: NativeFileReader::position()" );
       return 0;
 }
Beispiel #5
0
 public static char read( ClassFileReader reader )
 {
     //FileReaderInfo info = (FileReaderInfo) reader.property_native_data;
       //return (char) info.data[info.pos++];
       return (char) 0;
 }
Beispiel #6
0
 public static bool has_another( ClassFileReader reader )
 {
     //FileReaderInfo info = (FileReaderInfo) reader.property_native_data;
       //return (info != null && info.pos < info.data.Length) ? 1 : 0;
       return false;
 }
Beispiel #7
0
 public static void init( ClassFileReader reader, ClassString filename )
 {
     //reader.property_native_data = null;
 }
Beispiel #8
0
 static public int position(ClassFileReader reader)
 {
     Bard.log("TODO: NativeFileReader::position()");
     return(0);
 }
Beispiel #9
0
 public static void close( ClassFileReader reader )
 {
     //reader.property_native_data = null;
 }
Beispiel #10
0
 static public int remaining(ClassFileReader reader)
 {
     Bard.log("TODO: NativeFileReader::remaining()");
     return(0);
 }
Beispiel #11
0
 static public void skip(ClassFileReader reader, int skip_count)
 {
     Bard.log("TODO: NativeFileReader::skip()");
 }
Beispiel #12
0
 static public int read(ClassFileReader reader, char[] array, int index, int count)
 {
     Bard.log("TODO: NativeFileReader::read(char[],...)");
     return(0);
 }
Beispiel #13
0
 static public char read(ClassFileReader reader)
 {
     //FileReaderInfo info = (FileReaderInfo) reader.property_native_data;
     //return (char) info.data[info.pos++];
     return((char)0);
 }
Beispiel #14
0
 static public bool has_another(ClassFileReader reader)
 {
     //FileReaderInfo info = (FileReaderInfo) reader.property_native_data;
     //return (info != null && info.pos < info.data.Length) ? 1 : 0;
     return(false);
 }
Beispiel #15
0
 static public void close(ClassFileReader reader)
 {
     //reader.property_native_data = null;
 }
Beispiel #16
0
 static public void init(ClassFileReader reader, ClassString filename)
 {
     //reader.property_native_data = null;
 }