Why following code generate error message : getX() has private access in java.awt.Rectangle (int)dest.getX(), (int)dest.getY(), (int)dest.getWidth(), (int)dest.getHeight()

According to the doc , Rectangle do have a public method getX().

   public boolean setSize(java.awt.Rectangle source, java.awt.Rectangle dest)
{

    setVideoSize((int)source.getX() ,(int)source.getY(), (int)source.getWidth(), (int)source.getHeight(),
              (int)dest.getX(), (int)dest.getY(), (int)dest.getWidth(), (int)dest.getHeight()
     );


     return true;

}
link|improve this question

1  
Wow, I've never seen that before. Rectangle.getX() was always public, there's absolutely no good reason why this shouldn't compile. Try running javac with the -verbose option, and see if there's anything in the classpath that shouldn't be there. And maybe tell us what version of the JDK you're using. – Mike Baranczak Feb 25 '11 at 3:39
interesting that it doesn't complain about source.getX(), only dest.getX(). and those other methods shouldn't be showing in the error message. it's almost as if there were a problem with parentheses, but if there is I can't see it. – jcomeau_ictx Feb 25 '11 at 3:53
@jcomeau_ictx: It complained about dest.getX() either. I just simplified the error message. – pierr Feb 25 '11 at 4:54
feedback

3 Answers

up vote 1 down vote accepted

I just tried the following and it compiles fine.

public boolean setSize(java.awt.Rectangle source, java.awt.Rectangle dest) {

        setVideoSize((int) source.getX(), (int) source.getY(),
                (int) source.getWidth(), (int) source.getHeight(),
                (int) dest.getX(), (int) dest.getY(), (int) dest.getWidth(),
                (int) dest.getHeight());

        return true;

    }

    private void setVideoSize(int x, int y, int width, int height, int x2,
            int y2, int width2, int height2) {
        // TODO Auto-generated method stub

    }
link|improve this answer
Hi, I am using package from PhoneMe project. Having checked the source code, I found the getX() was declared as private. Don't know why ,anyway. – pierr Feb 25 '11 at 4:51
feedback

getX() is private in some specifications of java. For example, jsr-217 does not have getX() has public. Check the specification of java that you are running. If it is private, you might have access the data member directly.

http://docs.oracle.com/javame/config/cdc/ref-impl/pbp1.1.2/jsr217/index.html

link|improve this answer
feedback

pierr, getX() works with a more limited program:


jcomeau@intrepid:/tmp$ cat test.java; java test
import java.awt.*;
public class test {
 public static void main(String args[]) {
  Rectangle rect = new Rectangle(0, 0, 1, 1);
  System.out.println("x: " + rect.getX());
 }
}
x: 0.0

I cannot see why yours is erroring, though.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.