java - 无法让 NetBeans 在 Java 中访问 "FigurePanel"

标签 java awt

我是 Java 的初学者,我正在按照书中的说明进行操作。我将使用以下代码创建一个FigurePanel:

 import java.awt.*;
 import javax.swing.*;

 public class TestFigurePanel extends JFrame{
    public TestFigurePanel() {
         setLayout(new GridLayout(2, 3, 5, 5));
         add(new FigurePanel(FigurePanel.LINE));
    }
}

但是在“add(new FigurePanel(FigurePanel.LINE));”我收到以下错误:

“找不到符号:

符号:类FigurePanel

类:TestFigurePanel"

如果有人告诉我导致此问题的原因,我会非常高兴。

最佳答案

将此类添加到您的包中:

import java.awt.*;

import javax.swing.JPanel;



public class FigurePanel extends JPanel {

// Define constants
public static final int LINE = 1;

public static final int RECTANGLE = 2;

public static final int ROUND_RECTANGLE = 3;

public static final int OVAL = 4;

private int type = 1;

private boolean filled;

/** Construct a default FigurePanel */

public FigurePanel() {

}

/** Construct a FigurePanel with the specified type */

public FigurePanel(int type) {

this.type = type;

}



/** Construct a FigurePanel with the specified type and filled */

public FigurePanel(int type, boolean filled) {

this.type = type;

this.filled = filled;

}



/** Draw a figure on the panel */

public void paintComponent(Graphics g) {

super.paintComponent(g);



// Get the appropriate size for the figure
int width = getSize().width;

int height = getSize().height;



switch (type) {

  case LINE: // Display two cross lines
    g.setColor(Color.BLACK);

    g.drawLine(10, 10, width - 10, height - 10);

    g.drawLine(width - 10, 10, 10, height - 10);

    break;

  case RECTANGLE: // Display a rectangle
    g.setColor(Color.BLUE);

    if (filled)

      g.fillRect((int)(0.1 * width), (int)(0.1 * height),

        (int)(0.8 * width), (int)(0.8 * height));

    else

      g.drawRect((int)(0.1 * width), (int)(0.1 * height),

        (int)(0.8 * width), (int)(0.8 * height));

    break;

  case ROUND_RECTANGLE: // Display a round-cornered rectangle
    g.setColor(Color.RED);

    if (filled)

      g.fillRoundRect((int)(0.1 * width), (int)(0.1 * height),

        (int)(0.8 * width), (int)(0.8 * height), 20, 20);

    else

      g.drawRoundRect((int)(0.1 * width), (int)(0.1 * height),

        (int)(0.8 * width), (int)(0.8 * height), 20, 20);

    break;

  case OVAL: // Display an oval
    g.setColor(Color.BLACK);

    if (filled)

      g.fillOval((int)(0.1 * width), (int)(0.1 * height),

        (int)(0.8 * width), (int)(0.8 * height));

    else

      g.drawOval((int)(0.1 * width), (int)(0.1 * height),

        (int)(0.8 * width), (int)(0.8 * height));

}

}



  /** Set a new figure type */

  public void setType(int type) {

  this.type = type;

  repaint();

}



/** Return figure type */

public int getType() {

return type;

}



/** Set a new filled property */

public void setFilled(boolean filled) {

  this.filled = filled;

  repaint();

}



/** Check if the figure is filled */

public boolean isFilled() {

return filled;

}



/** Specify preferred size */

public Dimension getPreferredSize() {

return new Dimension(80, 80);

}


}

关于java - 无法让 NetBeans 在 Java 中访问 "FigurePanel",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10120641/

相关文章:

java - 使用 JPA/EclipseLink/EJB 从 Java Web 应用程序访问多个数据库

java - 无法解析符号 BufferedImage

java - actionPerformed 替换容器内容

java - 是否有与 FontUtilities.getCompositeFontUIResource(Font) 等效的非专有等效项?

java - 在java语音识别sphinx API的while循环内启用按钮

Java TestNG 与跨多个测试的数据驱动测试

java - 在 arraylist 中查找重复值

java - Apache DBUtils - 存储过程

java - 屏幕和警棍的分割 Pane

java - 机器人类java,输入字符串问题