[kaffe] Klasses.jar.bootstrap

Rob Gonzalez rgonzale at wso.williams.edu
Tue Aug 12 07:12:02 PDT 2003


Hi everyone,


I still cannot compile kaffe from a fresh CVS checkout without access to a
working rt.jar.  When using only the Klasses.jar.bootstrap and jikes
1.1.18, I receive the attached list of errors.  make Klasses gets as far
as the awt.jar then starts failing pretty spectacularly.


If anyone has a current (i.e. compiled today) working version of rt.jar
and wouldn't mind sending it my way, I'd be much obliged.


Thanks,
Rob
-------------- next part --------------

Found 4 semantic errors compiling "java/awt/event/ItemEvent.java":

     6. import java.awt.Checkbox;
               ^---------------^
*** Semantic Error: The import "java/awt/Checkbox" is not valid, since it does not name a type in a package.


     7. import java.awt.List;
               ^-----------^
*** Semantic Error: The import "java/awt/List" is not valid, since it does not name a type in a package.


    69.         if (source instanceof Checkbox) {
                                      ^------^
*** Semantic Error: A candidate for type "Checkbox" was found, but it is invalid and needs to be fixed before this type will successfully compile.


    80.         else if (source instanceof List) {
                                           ^--^
*** Semantic Error: A candidate for type "List" was found, but it is invalid and needs to be fixed before this type will successfully compile.

Found 6 semantic errors compiling "java/awt/FileDialog.java":

    41.         List lDirs = new List();
                ^--^
*** Semantic Error: Type java.awt.List was not found.


    41.         List lDirs = new List();
                                 ^--^
*** Semantic Error: A candidate for type "List" was found, but it is invalid and needs to be fixed before this type will successfully compile.


    42.         List lFiles = new List();
                                  ^--^
*** Semantic Error: A candidate for type "List" was found, but it is invalid and needs to be fixed before this type will successfully compile.


   259.                 if ( is != upDir ) {
                             ^^
*** Semantic Error: The variable "is" may be accessed here before having been definitely assigned a value.


   268.                         tFile.setText( File.separator + is );
                                                                ^^
*** Semantic Error: The variable "is" may be accessed here before having been definitely assigned a value.


   270.                         tFile.setText( dir + File.separator + is  );
                                                                      ^^
*** Semantic Error: The variable "is" may be accessed here before having been definitely assigned a value.

Found 30 semantic errors compiling "java/awt/ScrollPane.java":

    33.   extends Scrollbar
                  ^-------^
*** Semantic Error: Type java.awt.Scrollbar was not found.


    36.         super( orientation);
                ^------------------^
*** Semantic Error: No applicable overload was found for a constructor of type "java.lang.Object". Perhaps you wanted the overloaded version "Object();" instead?


    88.         add( hScroll);
                ^-----------^
*** Semantic Error: No applicable overload for the method named "add" was found in type "java.awt.Container". Perhaps you wanted the overloaded version "java.awt.Component add(java.awt.Component child);" instead?


    89.         add( vScroll);
                ^-----------^
*** Semantic Error: No applicable overload for the method named "add" was found in type "java.awt.Container". Perhaps you wanted the overloaded version "java.awt.Component add(java.awt.Component child);" instead?


    91.         hScroll.addAdjustmentListener( this);
                ^----------------------------------^
*** Semantic Error: No method named "addAdjustmentListener" was found in type "java.awt.ScrollPane$SPAdjustable".


    92.         vScroll.addAdjustmentListener( this);
                ^----------------------------------^
*** Semantic Error: No method named "addAdjustmentListener" was found in type "java.awt.ScrollPane$SPAdjustable".


    95.                 hScroll.flags &= ~IS_VISIBLE;
                                ^---^
*** Semantic Error: No field named "flags" was found in type "java.awt.ScrollPane$SPAdjustable".


    96.                 vScroll.flags &= ~IS_VISIBLE;
                                ^---^
*** Semantic Error: No field named "flags" was found in type "java.awt.ScrollPane$SPAdjustable".


   101.         if ( (child != hScroll) && (child != vScroll) ){
                      ^--------------^
*** Semantic Error: The type of the left sub-expression, "java.awt.Component", is not compatible with the type of the right sub-expression, "java.awt.ScrollPane$SPAdjustable".


   101.         if ( (child != hScroll) && (child != vScroll) ){
                                            ^--------------^
*** Semantic Error: The type of the left sub-expression, "java.awt.Component", is not compatible with the type of the right sub-expression, "java.awt.ScrollPane$SPAdjustable".


   177.         if ( (hScroll.flags & IS_VISIBLE) != 0 ) {
                              ^---^
*** Semantic Error: No field named "flags" was found in type "java.awt.ScrollPane$SPAdjustable".


   179.                         hScroll.setVisible( false);
                                ^------------------------^
*** Semantic Error: No method named "setVisible" was found in type "java.awt.ScrollPane$SPAdjustable".


   184.                         hScroll.setVisible( true);
                                ^-----------------------^
*** Semantic Error: No method named "setVisible" was found in type "java.awt.ScrollPane$SPAdjustable".


   188.         if ( (vScroll.flags & IS_VISIBLE) != 0 ) {
                              ^---^
*** Semantic Error: No field named "flags" was found in type "java.awt.ScrollPane$SPAdjustable".


   190.                         vScroll.setVisible( false);
                                ^------------------------^
*** Semantic Error: No method named "setVisible" was found in type "java.awt.ScrollPane$SPAdjustable".


   195.                         vScroll.setVisible( true);
                                ^-----------------------^
*** Semantic Error: No method named "setVisible" was found in type "java.awt.ScrollPane$SPAdjustable".


   205.         return hScroll;
                       ^-----^
*** Semantic Error: The type of this return expression, "java.awt.ScrollPane$SPAdjustable", does not match the return type of the method, "java.awt.Adjustable".


   221.         return vScroll;
                       ^-----^
*** Semantic Error: The type of this return expression, "java.awt.ScrollPane$SPAdjustable", does not match the return type of the method, "java.awt.Adjustable".


   254.         int vw = ((vScroll.flags & IS_VISIBLE) != 0) ? sw : 0;
                                   ^---^
*** Semantic Error: No field named "flags" was found in type "java.awt.ScrollPane$SPAdjustable".


   255.         int hh = ((hScroll.flags & IS_VISIBLE) != 0) ? sw : 0;
                                   ^---^
*** Semantic Error: No field named "flags" was found in type "java.awt.ScrollPane$SPAdjustable".


   261.         hScroll.setBounds( 0, height - sw, width - vw, sw);
                ^------------------------------------------------^
*** Semantic Error: No method named "setBounds" was found in type "java.awt.ScrollPane$SPAdjustable".


   262.         vScroll.setBounds( width - sw, 0, sw, height - hh);
                ^------------------------------------------------^
*** Semantic Error: No method named "setBounds" was found in type "java.awt.ScrollPane$SPAdjustable".


   264.         hScroll.setValues( 0, w, 0, cd.width);
                ^-----------------------------------^
*** Semantic Error: No method named "setValues" was found in type "java.awt.ScrollPane$SPAdjustable".


   265.         vScroll.setValues( 0, h, 0, cd.height);
                ^------------------------------------^
*** Semantic Error: No method named "setValues" was found in type "java.awt.ScrollPane$SPAdjustable".


   275.         int vw = ((vScroll.flags & IS_VISIBLE) != 0) ? sw : 0;
                                   ^---^
*** Semantic Error: No field named "flags" was found in type "java.awt.ScrollPane$SPAdjustable".


   276.         int hh = ((hScroll.flags & IS_VISIBLE) != 0) ? sw : 0;
                                   ^---^
*** Semantic Error: No field named "flags" was found in type "java.awt.ScrollPane$SPAdjustable".


   281.                 g.paintChild( hScroll, false);
                        ^---------------------------^
*** Semantic Error: No applicable overload for the method named "paintChild" was found in type "java.awt.Graphics". Perhaps you wanted the overloaded version "void paintChild(java.awt.Component c, boolean isUpdate);" instead?


   283.                 g.paintChild( vScroll, false);
                        ^---------------------------^
*** Semantic Error: No applicable overload for the method named "paintChild" was found in type "java.awt.Graphics". Perhaps you wanted the overloaded version "void paintChild(java.awt.Component c, boolean isUpdate);" instead?


   300.         hScroll.setValue( x);
                ^------------------^
*** Semantic Error: No method named "setValue" was found in type "java.awt.ScrollPane$SPAdjustable".


   301.         vScroll.setValue( y);
                ^------------------^
*** Semantic Error: No method named "setValue" was found in type "java.awt.ScrollPane$SPAdjustable".

Found 2 semantic errors compiling "java/awt/widgets/Choice.java":

    42.         List list = new List();
                                ^--^
*** Semantic Error: A candidate for type "List" was found, but it is invalid and needs to be fixed before this type will successfully compile.


    49.         this.add( list);
                ^-------------^
*** Semantic Error: Ambiguous invocation of method "add". At least two methods are accessible from here: "java.awt.Component add(java.awt.Component child);" declared in type "java.awt.Container" and "void add(java.awt.PopupMenu menu);" declared in type "java.awt.Component".

Found 214 semantic errors compiling "java/awt/widgets/TextArea.java":

    36.   extends RowCanvas
                  ^-------^
*** Semantic Error: Type java.awt.RowCanvas was not found.


    44.         xOffsInit = 4;
                ^-------^
*** Semantic Error: No field named "xOffsInit" was found in type "java.awt.TextArea$TextPane".


    45.         xOffs = 4;
                ^---^
*** Semantic Error: No field named "xOffs" was found in type "java.awt.TextArea$TextPane".


    47.         this.setCursor( Cursor.getPredefinedCursor( Cursor.TEXT_CURSOR));
                ^--------------------------------------------------------------^
*** Semantic Error: No method named "setCursor" was found in type "java.awt.TextArea$TextPane".


    48.         tCursor.setPos( xOffs, rowHeight + BORDER_WIDTH);
                                ^---^
*** Semantic Error: No field named "xOffs" was found in type "java.awt.TextArea$TextPane".


    48.         tCursor.setPos( xOffs, rowHeight + BORDER_WIDTH);
                                       ^-------^
*** Semantic Error: No field named "rowHeight" was found in type "java.awt.TextArea$TextPane".


    51.         this.addKeyListener( this);
                ^------------------------^
*** Semantic Error: No method named "addKeyListener" was found in type "java.awt.TextArea$TextPane".


    52.         this.addMouseListener( this);
                ^--------------------------^
*** Semantic Error: No method named "addMouseListener" was found in type "java.awt.TextArea$TextPane".


    53.         this.addMouseMotionListener( this);
                ^--------------------------------^
*** Semantic Error: No method named "addMouseMotionListener" was found in type "java.awt.TextArea$TextPane".


    54.         this.addFocusListener( this);
                ^--------------------------^
*** Semantic Error: No method named "addFocusListener" was found in type "java.awt.TextArea$TextPane".


    65.         nOld = rows.size() - 1;
                       ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


    66.         tb = (TextBuffer)rows.elementAt( nOld);
                                 ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


    71.                 tb.setMetrics( fm, tabWidth);
                                       ^^
*** Semantic Error: No field named "fm" was found in type "java.awt.TextArea$TextPane".


    72.                 rows.addElement( tb);
                        ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


    75.         nNew = rows.size() - 1;
                       ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


    76.         makeVisible( nNew);
                ^----------------^
*** Semantic Error: No method named "makeVisible" was found in type "java.awt.TextArea$TextPane".


    77.         updateScrolls();
                ^-------------^
*** Semantic Error: No method named "updateScrolls" was found in type "java.awt.TextArea$TextPane".


    79.         repaintRows( nOld, nNew - nOld);
                ^-----------------------------^
*** Semantic Error: No method named "repaintRows" was found in type "java.awt.TextArea$TextPane".


    94.                 rows.removeElement( tb);
                        ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


    95.                 this.repaint();
                        ^------------^
*** Semantic Error: No method named "repaint" was found in type "java.awt.TextArea$TextPane". However, there is an accessible method "repaintCursor" whose name closely matches the name "repaint".


    96.                 updateScrolls();
                        ^-------------^
*** Semantic Error: No method named "updateScrolls" was found in type "java.awt.TextArea$TextPane".


   103.         if ( rgr != null ) {
                     ^-^
*** Semantic Error: No field named "rgr" was found in type "java.awt.TextArea$TextPane".


   104.                 rgr.setColor( this.bgClr );
                                           ^---^
*** Semantic Error: No field named "bgClr" was found in type "java.awt.TextArea$TextPane".


   105.                 tCursor.blank( rgr, xOffs, getRowYPos( tCursor.yindex) );
                                       ^-^
*** Semantic Error: No field named "rgr" was found in type "java.awt.TextArea$TextPane".


   105.                 tCursor.blank( rgr, xOffs, getRowYPos( tCursor.yindex) );
                                            ^---^
*** Semantic Error: No field named "xOffs" was found in type "java.awt.TextArea$TextPane".


   105.                 tCursor.blank( rgr, xOffs, getRowYPos( tCursor.yindex) );
                                                   ^-------------------------^
*** Semantic Error: No method named "getRowYPos" was found in type "java.awt.TextArea$TextPane".


   106.                 rgr.setColor( this.fgClr );
                                           ^---^
*** Semantic Error: No field named "fgClr" was found in type "java.awt.TextArea$TextPane".


   107.                 tb = (TextBuffer)rows.elementAt( tCursor.yindex );
                                         ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


   108.                 tb.paint( rgr, xOffs, tCursor.y, rowHeight, tCursor.index, 1);
                                  ^-^
*** Semantic Error: No field named "rgr" was found in type "java.awt.TextArea$TextPane".


   108.                 tb.paint( rgr, xOffs, tCursor.y, rowHeight, tCursor.index, 1);
                                       ^---^
*** Semantic Error: No field named "xOffs" was found in type "java.awt.TextArea$TextPane".


   108.                 tb.paint( rgr, xOffs, tCursor.y, rowHeight, tCursor.index, 1);
                                                         ^-------^
*** Semantic Error: No field named "rowHeight" was found in type "java.awt.TextArea$TextPane".


   153.         int newY = Math.min( tCursor.yindex + steps, rows.size() -1);
                                                             ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


   185.                 nx = ((TextBuffer)rows.elementAt( tCursor.yindex-1)).len;
                                          ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


   202.         TextBuffer tb = (TextBuffer)rows.elementAt( tCursor.yindex);
                                            ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


   208.         else if ( tCursor.yindex < rows.size() - 1 ) {
                                           ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


   222.         int yIdx = rows.size() - 1;
                           ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


   223.         TextBuffer tb = (TextBuffer)rows.elementAt( yIdx);
                                            ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


   253.         else if ( tCursor.yindex < rows.size() - 1 ){
                                           ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


   254.                 TextBuffer tb1 = (TextBuffer)rows.elementAt( tCursor.yindex+1);
                                                     ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


   256.                 rows.removeElement( tb1);
                        ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


   257.                 updateScrolls();
                        ^-------------^
*** Semantic Error: No method named "updateScrolls" was found in type "java.awt.TextArea$TextPane".


   258.                 this.repaint();
                        ^------------^
*** Semantic Error: No method named "repaint" was found in type "java.awt.TextArea$TextPane". However, there is an accessible method "repaintCursor" whose name closely matches the name "repaint".


   265.         TextBuffer tb = (TextBuffer)rows.elementAt( ps.y);
                                            ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


   274.                 if ( updateHScroll() )
                             ^-------------^
*** Semantic Error: No method named "updateHScroll" was found in type "java.awt.TextArea$TextPane".


   275.                         rearrange();
                                ^---------^
*** Semantic Error: No method named "rearrange" was found in type "java.awt.TextArea$TextPane".


   283.         tb = (TextBuffer)rows.elementAt( pe.y);
                                 ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


   287.                 rows.removeElementAt( ps.y + af);
                        ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


   290.         updateScrolls();
                ^-------------^
*** Semantic Error: No method named "updateScrolls" was found in type "java.awt.TextArea$TextPane".


   291.         this.repaint();
                ^------------^
*** Semantic Error: No method named "repaint" was found in type "java.awt.TextArea$TextPane". However, there is an accessible method "repaintCursor" whose name closely matches the name "repaint".


   297.         super.focusGained( e);
                ^-------------------^
*** Semantic Error: No method named "focusGained" was found in type "java.lang.Object".


   307.         super.focusLost( e);
                ^-----------------^
*** Semantic Error: No method named "focusLost" was found in type "java.lang.Object".


   314.                 TextBuffer tb = (TextBuffer)rows.elementAt( i);
                                                    ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


   324.         int rs = rows.size();
                         ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


   332.                 tb = (TextBuffer)rows.elementAt( i);
                                         ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


   343.         TextBuffer tb = (TextBuffer) rows.elementAt( row);
                                             ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


   344.         return tb.getIdx( x - xOffs);
                                      ^---^
*** Semantic Error: No field named "xOffs" was found in type "java.awt.TextArea$TextPane".


   348.         return (TextBuffer)rows.elementAt( tCursor.yindex);
                                   ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


   389.         TextBuffer tb = (TextBuffer)rows.elementAt( tCursor.yindex);
                                            ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


   413.         updateScrolls();
                ^-------------^
*** Semantic Error: No method named "updateScrolls" was found in type "java.awt.TextArea$TextPane".


   414.         this.repaint();
                ^------------^
*** Semantic Error: No method named "repaint" was found in type "java.awt.TextArea$TextPane". However, there is an accessible method "repaintCursor" whose name closely matches the name "repaint".


   424.         TextBuffer tb = (TextBuffer)rows.elementAt( tCursor.yindex);
                                            ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


   439.         tb.setMetrics( fm, tabWidth);
                               ^^
*** Semantic Error: No field named "fm" was found in type "java.awt.TextArea$TextPane".


   440.         rows.insertElementAt( tb, lIdx);
                ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


   456.         if ( this.parent.keyListener != null ){
                          ^----^
*** Semantic Error: No field named "parent" was found in type "java.awt.TextArea$TextPane".


   459.                 redirectKeyEvent( e);
                        ^------------------^
*** Semantic Error: No method named "redirectKeyEvent" was found in type "java.awt.TextArea$TextPane".


   535.         redirectKeyEvent( e);
                ^------------------^
*** Semantic Error: No method named "redirectKeyEvent" was found in type "java.awt.TextArea$TextPane".


   553.   if ( this.parent.keyListener != null ) {
                    ^----^
*** Semantic Error: No field named "parent" was found in type "java.awt.TextArea$TextPane".


   555.                 redirectKeyEvent( e);
                        ^------------------^
*** Semantic Error: No method named "redirectKeyEvent" was found in type "java.awt.TextArea$TextPane".


   558.         if ( (textListener != null) || (this.eventMask & AWTEvent.TEXT_EVENT_MASK) != 0 ) {
                                                     ^-------^
*** Semantic Error: No field named "eventMask" was found in type "java.awt.TextArea$TextPane".


   567.         int rs = rows.size();
                         ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


   571.                 iw = ((TextBuffer)rows.elementAt( i)).getWidth();
                                          ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


   580.         if ( this.parent.mouseListener != null ){
                          ^----^
*** Semantic Error: No field named "parent" was found in type "java.awt.TextArea$TextPane".


   582.                 this.parent.process( e);
                             ^----^
*** Semantic Error: No field named "parent" was found in type "java.awt.TextArea$TextPane".


   587.         int y = getRowIdx( e.getY() );
                        ^-------------------^
*** Semantic Error: No method named "getRowIdx" was found in type "java.awt.TextArea$TextPane".


   591.         if ( this.parent.motionListener != null ){
                          ^----^
*** Semantic Error: No field named "parent" was found in type "java.awt.TextArea$TextPane".


   593.                 redirectMotionEvent( e);
                        ^---------------------^
*** Semantic Error: No method named "redirectMotionEvent" was found in type "java.awt.TextArea$TextPane".


   598.         redirectMouseEvent( e);
                ^--------------------^
*** Semantic Error: No method named "redirectMouseEvent" was found in type "java.awt.TextArea$TextPane".


   602.         redirectMouseEvent( e);
                ^--------------------^
*** Semantic Error: No method named "redirectMouseEvent" was found in type "java.awt.TextArea$TextPane".


   606.         if ( this.parent.motionListener != null ){
                          ^----^
*** Semantic Error: No field named "parent" was found in type "java.awt.TextArea$TextPane".


   608.                 redirectMotionEvent( e);
                        ^---------------------^
*** Semantic Error: No method named "redirectMotionEvent" was found in type "java.awt.TextArea$TextPane".


   616.                 if ( (this.triggerPopup( e.getX(), e.getY())) != null )
                              ^------------------------------------^
*** Semantic Error: No method named "triggerPopup" was found in type "java.awt.TextArea$TextPane".


   622.                         tp.requestFocus();
                                ^---------------^
*** Semantic Error: No method named "requestFocus" was found in type "java.awt.TextArea$TextPane".


   624.                         int y = getRowIdx( e.getY() );
                                        ^-------------------^
*** Semantic Error: No method named "getRowIdx" was found in type "java.awt.TextArea$TextPane".


   633.         redirectMouseEvent( e);
                ^--------------------^
*** Semantic Error: No method named "redirectMouseEvent" was found in type "java.awt.TextArea$TextPane".


   637.         redirectMouseEvent( e);
                ^--------------------^
*** Semantic Error: No method named "redirectMouseEvent" was found in type "java.awt.TextArea$TextPane".


   653.         updateScrolls();
                ^-------------^
*** Semantic Error: No method named "updateScrolls" was found in type "java.awt.TextArea$TextPane".


   656.         repaintRows( tCursor.yindex-1, getVisibleRows() );
                                               ^--------------^
*** Semantic Error: No method named "getVisibleRows" was found in type "java.awt.TextArea$TextPane".


   660.         int vr = getVisibleRows();
                         ^--------------^
*** Semantic Error: No method named "getVisibleRows" was found in type "java.awt.TextArea$TextPane".


   661.         int newY = Math.min( tCursor.yindex + vr, rows.size() - 1);
                                                          ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


   669.         int vr = getVisibleRows();
                         ^--------------^
*** Semantic Error: No method named "getVisibleRows" was found in type "java.awt.TextArea$TextPane".


   678.         repaintRows( g, first, rows.size()-first );
                                ^---^
*** Semantic Error: No field named "first" was found in type "java.awt.TextArea$TextPane".


   678.         repaintRows( g, first, rows.size()-first );
                                       ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


   678.         repaintRows( g, first, rows.size()-first );
                                                   ^---^
*** Semantic Error: No field named "first" was found in type "java.awt.TextArea$TextPane".


   679.         this.kaffePaintBorder( g);
                ^-----------------------^
*** Semantic Error: No method named "kaffePaintBorder" was found in type "java.awt.TextArea$TextPane".


   683.         if ( rgr != null)
                     ^-^
*** Semantic Error: No field named "rgr" was found in type "java.awt.TextArea$TextPane".


   684.                 paintInactiveCursor( rgr);
                                             ^-^
*** Semantic Error: No field named "rgr" was found in type "java.awt.TextArea$TextPane".


   689.         tCursor.blank( g, xOffs, getRowYPos( tCursor.yindex) );
                                  ^---^
*** Semantic Error: No field named "xOffs" was found in type "java.awt.TextArea$TextPane".


   689.         tCursor.blank( g, xOffs, getRowYPos( tCursor.yindex) );
                                         ^-------------------------^
*** Semantic Error: No method named "getRowYPos" was found in type "java.awt.TextArea$TextPane".


   693.         repaintCursor( rgr);
                               ^-^
*** Semantic Error: No field named "rgr" was found in type "java.awt.TextArea$TextPane".


   698.                 if ( AWTEvent.keyTgt == this)
                             ^---------------------^
*** Semantic Error: The type of the left sub-expression, "java.awt.Component", is not compatible with the type of the right sub-expression, "java.awt.TextArea$TextPane".


   699.                         tCursor.paint( g, xOffs, getRowYPos( tCursor.yindex) );
                                                  ^---^
*** Semantic Error: No field named "xOffs" was found in type "java.awt.TextArea$TextPane".


   699.                         tCursor.paint( g, xOffs, getRowYPos( tCursor.yindex) );
                                                         ^-------------------------^
*** Semantic Error: No method named "getRowYPos" was found in type "java.awt.TextArea$TextPane".


   713.                 tb = (TextBuffer)rows.elementAt( row);
                                         ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


   717.         int y0 = d + (row - first) * rowHeight;
                                    ^---^
*** Semantic Error: No field named "first" was found in type "java.awt.TextArea$TextPane".


   717.         int y0 = d + (row - first) * rowHeight;
                                             ^-------^
*** Semantic Error: No field named "rowHeight" was found in type "java.awt.TextArea$TextPane".


   720.                 x0 = (startX == 0) ? 0 : tb.getPos( startX) + xOffs;
                                                                      ^---^
*** Semantic Error: No field named "xOffs" was found in type "java.awt.TextArea$TextPane".


   721.                 w = this.width - x0;
                                 ^---^
*** Semantic Error: No field named "width" was found in type "java.awt.TextArea$TextPane".


   722.                 g.setColor( this.bgClr );
                                         ^---^
*** Semantic Error: No field named "bgClr" was found in type "java.awt.TextArea$TextPane".


   723.                 g.fillRect( x0, y0, w-d, rowHeight);
                                                 ^-------^
*** Semantic Error: No field named "rowHeight" was found in type "java.awt.TextArea$TextPane".


   724.                 g.setColor( this.fgClr );
                                         ^---^
*** Semantic Error: No field named "fgClr" was found in type "java.awt.TextArea$TextPane".


   725.                 tb.paint( g, xOffs, y0, rowHeight, startX);
                                     ^---^
*** Semantic Error: No field named "xOffs" was found in type "java.awt.TextArea$TextPane".


   725.                 tb.paint( g, xOffs, y0, rowHeight, startX);
                                                ^-------^
*** Semantic Error: No field named "rowHeight" was found in type "java.awt.TextArea$TextPane".


   729.                         x0 = tb.getPos( startX) + xOffs;
                                                          ^---^
*** Semantic Error: No field named "xOffs" was found in type "java.awt.TextArea$TextPane".


   731.                         g.setColor( this.bgClr );
                                                 ^---^
*** Semantic Error: No field named "bgClr" was found in type "java.awt.TextArea$TextPane".


   732.                         g.fillRect( x0, y0, w, rowHeight);
                                                       ^-------^
*** Semantic Error: No field named "rowHeight" was found in type "java.awt.TextArea$TextPane".


   733.                         g.setColor( this.fgClr );
                                                 ^---^
*** Semantic Error: No field named "fgClr" was found in type "java.awt.TextArea$TextPane".


   734.                         tb.paint( g, xOffs, y0, rowHeight, startX, ss-startX);
                                             ^---^
*** Semantic Error: No field named "xOffs" was found in type "java.awt.TextArea$TextPane".


   734.                         tb.paint( g, xOffs, y0, rowHeight, startX, ss-startX);
                                                        ^-------^
*** Semantic Error: No field named "rowHeight" was found in type "java.awt.TextArea$TextPane".


   737.                         x0 = tb.getPos( ss) + xOffs;
                                                      ^---^
*** Semantic Error: No field named "xOffs" was found in type "java.awt.TextArea$TextPane".


   740.                         g.fill3DRect( x0, y0, w, rowHeight, true);
                                                         ^-------^
*** Semantic Error: No field named "rowHeight" was found in type "java.awt.TextArea$TextPane".


   742.                         tb.paint( g, xOffs, y0, rowHeight, ss, se-ss);
                                             ^---^
*** Semantic Error: No field named "xOffs" was found in type "java.awt.TextArea$TextPane".


   742.                         tb.paint( g, xOffs, y0, rowHeight, ss, se-ss);
                                                        ^-------^
*** Semantic Error: No field named "rowHeight" was found in type "java.awt.TextArea$TextPane".


   744.                 x0 = tb.getPos( se) + xOffs;
                                              ^---^
*** Semantic Error: No field named "xOffs" was found in type "java.awt.TextArea$TextPane".


   745.                 w = this.width - x0;
                                 ^---^
*** Semantic Error: No field named "width" was found in type "java.awt.TextArea$TextPane".


   746.                 g.setColor( this.bgClr );
                                         ^---^
*** Semantic Error: No field named "bgClr" was found in type "java.awt.TextArea$TextPane".


   747.                 g.fillRect( x0, y0, w, rowHeight);
                                               ^-------^
*** Semantic Error: No field named "rowHeight" was found in type "java.awt.TextArea$TextPane".


   749.                         g.setColor( this.fgClr );
                                                 ^---^
*** Semantic Error: No field named "fgClr" was found in type "java.awt.TextArea$TextPane".


   750.                         tb.paint( g, xOffs, y0, rowHeight, se);
                                             ^---^
*** Semantic Error: No field named "xOffs" was found in type "java.awt.TextArea$TextPane".


   750.                         tb.paint( g, xOffs, y0, rowHeight, se);
                                                        ^-------^
*** Semantic Error: No field named "rowHeight" was found in type "java.awt.TextArea$TextPane".


   760.         repaintLine( rgr, row, startX, tb);
                             ^-^
*** Semantic Error: No field named "rgr" was found in type "java.awt.TextArea$TextPane".


   796.                 repaintRows( y0, y1-y0);
                        ^---------------------^
*** Semantic Error: No method named "repaintRows" was found in type "java.awt.TextArea$TextPane".


   829.         rows.removeAllElements();
                ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


   833.         updateScrolls();
                ^-------------^
*** Semantic Error: No method named "updateScrolls" was found in type "java.awt.TextArea$TextPane".


   834.         this.repaint();
                ^------------^
*** Semantic Error: No method named "repaint" was found in type "java.awt.TextArea$TextPane". However, there is an accessible method "repaintCursor" whose name closely matches the name "repaint".


   849.         makeVisible( y);
                ^-------------^
*** Semantic Error: No method named "makeVisible" was found in type "java.awt.TextArea$TextPane".


   851.         tb = (TextBuffer)rows.elementAt( y);
                                 ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


   852.         tCursor.setYIndex( y, getRowYPos( y) );
                                      ^------------^
*** Semantic Error: No method named "getRowYPos" was found in type "java.awt.TextArea$TextPane".


   863.         if ( this.width > 0) {
                          ^---^
*** Semantic Error: No field named "width" was found in type "java.awt.TextArea$TextPane".


   865.                 if ( (x > lastX) && (xPos - xOffs > this.width -dx) ){
                                                    ^---^
*** Semantic Error: No field named "xOffs" was found in type "java.awt.TextArea$TextPane".


   865.                 if ( (x > lastX) && (xPos - xOffs > this.width -dx) ){
                                                                 ^---^
*** Semantic Error: No field named "width" was found in type "java.awt.TextArea$TextPane".


   866.                         xOffs = this.width - xPos - dx;
                                ^---^
*** Semantic Error: No field named "xOffs" was found in type "java.awt.TextArea$TextPane".


   866.                         xOffs = this.width - xPos - dx;
                                             ^---^
*** Semantic Error: No field named "width" was found in type "java.awt.TextArea$TextPane".


   867.                         if (hScroll != null) {
                                    ^-----^
*** Semantic Error: No field named "hScroll" was found in type "java.awt.TextArea$TextPane".


   868.                                 if ( updateHScroll() )
                                             ^-------------^
*** Semantic Error: No method named "updateHScroll" was found in type "java.awt.TextArea$TextPane".


   869.                                         rearrange();
                                                ^---------^
*** Semantic Error: No method named "rearrange" was found in type "java.awt.TextArea$TextPane".


   870.                                 hScroll.setValue( -xOffs);
                                                           ^---^
*** Semantic Error: No field named "xOffs" was found in type "java.awt.TextArea$TextPane".


   872.                         this.repaint();
                                ^------------^
*** Semantic Error: No method named "repaint" was found in type "java.awt.TextArea$TextPane". However, there is an accessible method "repaintCursor" whose name closely matches the name "repaint".


   874.                 else if ( xPos + xOffs < xOffsInit ) {
                                         ^---^
*** Semantic Error: No field named "xOffs" was found in type "java.awt.TextArea$TextPane".


   874.                 else if ( xPos + xOffs < xOffsInit ) {
                                                 ^-------^
*** Semantic Error: No field named "xOffsInit" was found in type "java.awt.TextArea$TextPane".


   875.                         xOffs = -xPos + xOffsInit;
                                ^---^
*** Semantic Error: No field named "xOffs" was found in type "java.awt.TextArea$TextPane".


   875.                         xOffs = -xPos + xOffsInit;
                                                ^-------^
*** Semantic Error: No field named "xOffsInit" was found in type "java.awt.TextArea$TextPane".


   876.                         if (hScroll != null) {
                                    ^-----^
*** Semantic Error: No field named "hScroll" was found in type "java.awt.TextArea$TextPane".


   877.                                 if ( updateHScroll() )
                                             ^-------------^
*** Semantic Error: No method named "updateHScroll" was found in type "java.awt.TextArea$TextPane".


   878.                                         rearrange();
                                                ^---------^
*** Semantic Error: No method named "rearrange" was found in type "java.awt.TextArea$TextPane".


   879.                                 hScroll.setValue( -xOffs);
                                                           ^---^
*** Semantic Error: No field named "xOffs" was found in type "java.awt.TextArea$TextPane".


   881.                         this.repaint();
                                ^------------^
*** Semantic Error: No method named "repaint" was found in type "java.awt.TextArea$TextPane". However, there is an accessible method "repaintCursor" whose name closely matches the name "repaint".


   888.         int s = rows.size();
                        ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


   890.         super.setFont( f);
                ^---------------^
*** Semantic Error: No method named "setFont" was found in type "java.lang.Object".


   891.         fm = this.getFontMetrics( f);
                ^^
*** Semantic Error: No field named "fm" was found in type "java.awt.TextArea$TextPane".


   891.         fm = this.getFontMetrics( f);
                     ^---------------------^
*** Semantic Error: No method named "getFontMetrics" was found in type "java.awt.TextArea$TextPane".


   893.         if ( rgr != null )
                     ^-^
*** Semantic Error: No field named "rgr" was found in type "java.awt.TextArea$TextPane".


   894.                 rgr.setFont( f);
                        ^-^
*** Semantic Error: No field named "rgr" was found in type "java.awt.TextArea$TextPane".


   896.         tabWidth = 3*fm.charWidth( 'x');
                             ^^
*** Semantic Error: No field named "fm" was found in type "java.awt.TextArea$TextPane".


   897.         rowHeight = fm.getHeight() + 2;
                ^-------^
*** Semantic Error: No field named "rowHeight" was found in type "java.awt.TextArea$TextPane".


   897.         rowHeight = fm.getHeight() + 2;
                            ^^
*** Semantic Error: No field named "fm" was found in type "java.awt.TextArea$TextPane".


   900.                 tb = (TextBuffer)rows.elementAt( i);
                                         ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


   901.                 tb.setMetrics( fm, tabWidth);
                                       ^^
*** Semantic Error: No field named "fm" was found in type "java.awt.TextArea$TextPane".


   904.         tb = (TextBuffer)rows.elementAt( tCursor.yindex);
                                 ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


   905.         tCursor.setHeight( rowHeight-1 );
                                   ^-------^
*** Semantic Error: No field named "rowHeight" was found in type "java.awt.TextArea$TextPane".


   906.         tCursor.setYIndex( tCursor.yindex, getRowYPos( tCursor.yindex) );
                                                   ^-------------------------^
*** Semantic Error: No method named "getRowYPos" was found in type "java.awt.TextArea$TextPane".


   909.         if ( this.isShowing() )
                     ^--------------^
*** Semantic Error: No method named "isShowing" was found in type "java.awt.TextArea$TextPane".


   910.                 this.repaint();
                        ^------------^
*** Semantic Error: No method named "repaint" was found in type "java.awt.TextArea$TextPane". However, there is an accessible method "repaintCursor" whose name closely matches the name "repaint".


   926.                 repaintRows( y0, y1 - y0 + 1);
                        ^---------------------------^
*** Semantic Error: No method named "repaintRows" was found in type "java.awt.TextArea$TextPane".


   933.         tCursor.setYIndex( tCursor.yindex, getRowYPos( tCursor.yindex) );
                                                   ^-------------------------^
*** Semantic Error: No method named "getRowYPos" was found in type "java.awt.TextArea$TextPane".


   957.                 tp.vScroll = new Scrollbar( Scrollbar.VERTICAL,0,0,0,0);
                           ^-----^
*** Semantic Error: No field named "vScroll" was found in type "java.awt.TextArea$TextPane".


   957.                 tp.vScroll = new Scrollbar( Scrollbar.VERTICAL,0,0,0,0);
                                         ^-------^
*** Semantic Error: A candidate for type "Scrollbar" was found, but it is invalid and needs to be fixed before this type will successfully compile.


   958.                 add( tp.vScroll);
                                ^-----^
*** Semantic Error: No field named "vScroll" was found in type "java.awt.TextArea$TextPane".


   961.                 tp.hScroll = new Scrollbar( Scrollbar.HORIZONTAL,0,0,0,0);
                           ^-----^
*** Semantic Error: No field named "hScroll" was found in type "java.awt.TextArea$TextPane".


   961.                 tp.hScroll = new Scrollbar( Scrollbar.HORIZONTAL,0,0,0,0);
                                         ^-------^
*** Semantic Error: A candidate for type "Scrollbar" was found, but it is invalid and needs to be fixed before this type will successfully compile.


   963.                 tp.hScroll.setUnitIncrement( tp.fm.charWidth( 'x'));
                                                        ^^
*** Semantic Error: No field named "fm" was found in type "java.awt.TextArea$TextPane".


   964.                 add( tp.hScroll);
                                ^-----^
*** Semantic Error: No field named "hScroll" was found in type "java.awt.TextArea$TextPane".


   968.         add( tp);
                ^------^
*** Semantic Error: No applicable overload for the method named "add" was found in type "java.awt.TextArea". Perhaps you wanted the overloaded version "void add(java.awt.PopupMenu m);" instead?


   969.         tp.setListeners();
                ^---------------^
*** Semantic Error: No method named "setListeners" was found in type "java.awt.TextArea$TextPane".


   983.         tp.add( m);
                ^--------^
*** Semantic Error: No method named "add" was found in type "java.awt.TextArea$TextPane".


  1006.         tp.add( p);
                ^--------^
*** Semantic Error: No method named "add" was found in type "java.awt.TextArea$TextPane".


  1010.         tp.innerLayout();
                ^--------------^
*** Semantic Error: No method named "innerLayout" was found in type "java.awt.TextArea$TextPane".


  1016.         return tp.getBackground();
                       ^----------------^
*** Semantic Error: No method named "getBackground" was found in type "java.awt.TextArea$TextPane".


  1031.         return tp.getForeground();
                       ^----------------^
*** Semantic Error: No method named "getForeground" was found in type "java.awt.TextArea$TextPane".


  1055.         if ( (tp.hScroll == null) && (tp.vScroll == null) )
                         ^-----^
*** Semantic Error: No field named "hScroll" was found in type "java.awt.TextArea$TextPane".


  1055.         if ( (tp.hScroll == null) && (tp.vScroll == null) )
                                                 ^-----^
*** Semantic Error: No field named "vScroll" was found in type "java.awt.TextArea$TextPane".


  1057.         if ( tp.hScroll == null )
                        ^-----^
*** Semantic Error: No field named "hScroll" was found in type "java.awt.TextArea$TextPane".


  1059.         if ( tp.vScroll == null )
                        ^-----^
*** Semantic Error: No field named "vScroll" was found in type "java.awt.TextArea$TextPane".


  1072.                 TextBuffer tb = (TextBuffer) tp.rows.elementAt( i);
                                                        ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


  1098.         int i, imax = tp.rows.size()-1;
                                 ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


  1102.                 TextBuffer tb = (TextBuffer) tp.rows.elementAt(i);
                                                        ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


  1112.         tp.hPosChange();
                ^-------------^
*** Semantic Error: No method named "hPosChange" was found in type "java.awt.TextArea$TextPane".


  1130.         return new Dimension( cols*tp.fm.charWidth( 'x'), rows*tp.fm.getHeight() );
                                              ^^
*** Semantic Error: No field named "fm" was found in type "java.awt.TextArea$TextPane".


  1130.         return new Dimension( cols*tp.fm.charWidth( 'x'), rows*tp.fm.getHeight() );
                                                                          ^^
*** Semantic Error: No field named "fm" was found in type "java.awt.TextArea$TextPane".


  1136.         g.paintChild( tp, false);
                ^----------------------^
*** Semantic Error: No applicable overload for the method named "paintChild" was found in type "java.awt.Graphics". Perhaps you wanted the overloaded version "void paintChild(java.awt.Component c, boolean isUpdate);" instead?


  1138.         if ( (tp.hScroll != null) && ((tp.hScroll.flags & IS_VISIBLE) != 0) )
                         ^-----^
*** Semantic Error: No field named "hScroll" was found in type "java.awt.TextArea$TextPane".


  1138.         if ( (tp.hScroll != null) && ((tp.hScroll.flags & IS_VISIBLE) != 0) )
                                                  ^-----^
*** Semantic Error: No field named "hScroll" was found in type "java.awt.TextArea$TextPane".


  1139.                 g.paintChild( tp.hScroll, true);
                                         ^-----^
*** Semantic Error: No field named "hScroll" was found in type "java.awt.TextArea$TextPane".


  1140.         if ( (tp.vScroll != null) && ((tp.vScroll.flags & IS_VISIBLE) != 0) )
                         ^-----^
*** Semantic Error: No field named "vScroll" was found in type "java.awt.TextArea$TextPane".


  1140.         if ( (tp.vScroll != null) && ((tp.vScroll.flags & IS_VISIBLE) != 0) )
                                                  ^-----^
*** Semantic Error: No field named "vScroll" was found in type "java.awt.TextArea$TextPane".


  1141.                 g.paintChild( tp.vScroll, true);
                                         ^-----^
*** Semantic Error: No field named "vScroll" was found in type "java.awt.TextArea$TextPane".


  1159.         return new Dimension( cols*tp.fm.charWidth( 'x'), rows*tp.fm.getHeight() );
                                              ^^
*** Semantic Error: No field named "fm" was found in type "java.awt.TextArea$TextPane".


  1159.         return new Dimension( cols*tp.fm.charWidth( 'x'), rows*tp.fm.getHeight() );
                                                                          ^^
*** Semantic Error: No field named "fm" was found in type "java.awt.TextArea$TextPane".


  1182.         tp.requestFocus();
                ^---------------^
*** Semantic Error: No method named "requestFocus" was found in type "java.awt.TextArea$TextPane".


  1190.         tp.innerLayout();
                ^--------------^
*** Semantic Error: No method named "innerLayout" was found in type "java.awt.TextArea$TextPane".


  1202.         TextBuffer tb = (TextBuffer) tp.rows.lastElement();
                                                ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


  1207.         tp.updateSel( tb.len, tp.rows.size()-1, true);
                                         ^--^
*** Semantic Error: No field named "rows" was found in type "java.awt.TextArea$TextPane".


  1212.         tp.setBackground( clr);
                ^--------------------^
*** Semantic Error: No method named "setBackground" was found in type "java.awt.TextArea$TextPane".


  1227.         tp.setEnabled( isEnabled);
                ^-----------------------^
*** Semantic Error: No method named "setEnabled" was found in type "java.awt.TextArea$TextPane".


  1237.         tp.setForeground( clr);
                ^--------------------^
*** Semantic Error: No method named "setForeground" was found in type "java.awt.TextArea$TextPane".
make[1]: *** [lib/stamp] Error 1
make: *** [Klasses] Error 2


More information about the kaffe mailing list