KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > lang > VerifyError

java.lang
Class VerifyError

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Error
          extended by java.lang.LinkageError
              extended by java.lang.VerifyError
All Implemented Interfaces:
Serializable
See Also:
Top Examples, Source Code

public VerifyError()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public VerifyError(String s)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


[1174]videoinfo
By smita on 2005/09/26 01:07:35  Rate
public class videoinfo  {  
         int  width; 
         int  height; 
         double fps; 
         /*char compressor [ 8 ] ;*/ 
         byte [  ]  compressor = new byte [ 8 ] ; 
         int  video_frames; 
         /*char video_tag [ 4 ] ;*/ 
         char [  ]  video_tag = new char [ 4 ] ; 
         int  video_pos; 
         /*char  audio_tag [ 4 ] ;*/ 
         char [  ]  audio_tag = new char [ 4 ] ; 
         int  a_fmt; 
         int  a_chans; 
         int  a_rate; 
         int  a_bits; 
         int  audio_bytes; 
         int  threshhold; 
         int  AFAP; 
         int  ChapterCount; 
         /*char  ChapterDisplay [ 100 ]  [ 50 ] ;*/ 
         char [  ]  [  ]  ChapterDisplay = new char [ 100 ]  [ 50 ] ;         
      } ;

Popular Tags