Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8725409
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T08:02:02+00:00 2026-06-13T08:02:02+00:00

my problem is, where is says triangle.addActionListener(new ShapeAction()); in my code there is a

  • 0

my problem is, where is says “triangle.addActionListener(new ShapeAction());” in my code there is a error that says ShapeAction symbol is not found, what am i doing wrong here? and could someone look at my If statement, its ment to do: once a menu item is clicked it creates a instance of that shape from another class

public class MyFrame extends javax.swing.JFrame {
    public MyFrame() {
        // Create the menu
        JMenuBar topMenu = new JMenuBar();
        this.setJMenuBar(topMenu);

        //create the menu button "shapes"
        JMenu shapes = new JMenu("Shapes");
        topMenu.add(shapes);
        //Create the 3 shapes for the menu
        JMenuItem square = new JMenuItem("Square");
        square.addActionListener(new ShapeAction());

        JMenuItem circle = new JMenuItem("Circle");      
        circle.addActionListener(new ShapeAction());

        JMenuItem triangle = new JMenuItem("Triangle");
        triangle.addActionListener(new ShapeAction());

        //add shapes to menu
        shapes.add(circle);
        shapes.add(triangle);
        shapes.add(square);

        //add the menu
        setJMenuBar(topMenu);


        MyControlPanel pane = new MyControlPanel();
        getContentPane().add(pane);

        this.add(pane);
    }

    /**
     * @param args the command line arguments
     */
    public static void main(String args[]) {
        // <snip>

        /* Create and display the form */
        java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                new MyFrame().setVisible(true);
                }
                });

        class ShapeAction implements ActionListener{
            public void actionPerformed(ActionEvent e){
                JMenuItem clickedMenu = (JMenuItem)e.getSource();

                if (clickedMenu.getText().equals("Square")){
                    //implement abstract methods                
                    MyShape aSquare = new ASquare();

                }
                else if (clickedMenu.getText().equals("Circle")){ 
                    //implement abstract methods
                    MyShape ACircle = new ACircle();

                }
                else if (clickedMenu.getText().equals("Triangle")){ 
                    //implement abstract methods
                    MyShape ATriangle = new ATriangle();

                }
            }          
        }
    }

package assignment;

//import java.awt.FlowLayout;
import java.awt.BorderLayout;
import java.awt.FlowLayout;
import javax.swing.GroupLayout;
import javax.swing.GroupLayout.Alignment;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JSlider;
import javax.swing.JTextField;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;


public class MyControlPanel extends javax.swing.JPanel {

JSlider slider;
JLabel sliderLabel;
JLabel sliderdimension;
JLabel blank;
JLabel dl;
JLabel area1;

/**
 * Creates new form MyControlPanel
 */
public MyControlPanel() {


    slider = new JSlider();
    slider.setValue(50);
    slider.addChangeListener(new MyChangeAction());
    slider.setMajorTickSpacing(10);
    slider.setPaintLabels(true);
    slider.setPaintTicks(true);
    slider.setBounds(300, 50, 100, 50);

    sliderLabel = new JLabel("50");
    blank = new JLabel("     ");
    sliderdimension = new JLabel("Shape Dimension:");

    JTextField boundary_length = new JTextField("Boundary Length");
    JTextField area = new JTextField("Area");

    dl = new JLabel("Boundary Length =");
    area1 = new JLabel("Area =");

    setLayout(new BorderLayout());


    JPanel sliderPanel = new JPanel();
    sliderPanel.setLayout(new FlowLayout(FlowLayout.CENTER, 10, 0));


    sliderPanel.add(sliderdimension);
    sliderPanel.add(sliderLabel);
    sliderPanel.add(slider);
    sliderPanel.add(dl);
    sliderPanel.add(boundary_length);
    sliderPanel.add(area1);
    sliderPanel.add(area);
    this.add(sliderPanel, BorderLayout.PAGE_END);



}

/**
 * This method is called from within the constructor to initialize the form.
 * WARNING: Do NOT modify this code. The content of this method is always
 * regenerated by the Form Editor.
 */
// <editor-fold defaultstate="collapsed" desc="Generated Code">                          
private void initComponents() {

    javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this);
    this.setLayout(layout);
    layout.setHorizontalGroup(
        layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
        .addGap(0, 400, Short.MAX_VALUE)
    );
    layout.setVerticalGroup(
        layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
        .addGap(0, 300, Short.MAX_VALUE)
    );
}// </editor-fold>                        
// Variables declaration - do not modify                     
// End of variables declaration                   

public class MyChangeAction implements ChangeListener {

    //complete code here
    public void stateChanged(ChangeEvent ce) {
        int value = slider.getValue();
        String str = Integer.toString(value);
        sliderLabel.setText(str);


    }
} // end class




    }

package assignment;

public abstract class MyShape
 {

double thelength;
double thearea;



public abstract double computeBoundaryLength(double Length);

public abstract double computeArea (double Length);
 }

package assignment;


public class ACircle extends MyShape {

@Override
public double computeBoundaryLength(double Length) 
{
    thelength=(2*Length*Math.PI);
return thelength;
}

@Override
public double computeArea(double Length) 
{
    thearea=(Length*Length*Math.PI);
    return thearea;
}

}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T08:02:03+00:00Added an answer on June 13, 2026 at 8:02 am

    You should introduce inner class ShapeAction outside the main method, inside the MyFrame class. And you create a local main‘s method class instead of that.

    Simply move it outside the main method:

    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JMenu;
    import javax.swing.JMenuBar;
    import javax.swing.JMenuItem;
    
    
    public class MyFrame extends javax.swing.JFrame
    {
        public MyFrame ()
        {
            // Create the menu
            JMenuBar topMenu = new JMenuBar ();
            this.setJMenuBar ( topMenu );
    
            //create the menu button "shapes"
            JMenu shapes = new JMenu ( "Shapes" );
            topMenu.add ( shapes );
            //Create the 3 shapes for the menu
            JMenuItem square = new JMenuItem ( "Square" );
            square.addActionListener ( new ShapeAction () );
    
            JMenuItem circle = new JMenuItem ( "Circle" );
            circle.addActionListener ( new ShapeAction () );
    
            JMenuItem triangle = new JMenuItem ( "Triangle" );
            triangle.addActionListener ( new ShapeAction () );
    
            //add shapes to menu
            shapes.add ( circle );
            shapes.add ( triangle );
            shapes.add ( square );
    
            //add the menu
            setJMenuBar ( topMenu );
    
    
            MyControlPanel pane = new MyControlPanel ();
            getContentPane ().add ( pane );
    
            this.add ( pane );
        }
    
    
        @SuppressWarnings( "unchecked" )
        // <editor-fold defaultstate="collapsed" desc="Generated Code">
        private void initComponents ()
        {
    
            setDefaultCloseOperation ( javax.swing.WindowConstants.EXIT_ON_CLOSE );
    
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout ( getContentPane () );
            getContentPane ().setLayout ( layout );
            layout.setHorizontalGroup (
                    layout.createParallelGroup ( javax.swing.GroupLayout.Alignment.LEADING ).addGap ( 0, 400, Short.MAX_VALUE ) );
            layout.setVerticalGroup (
                    layout.createParallelGroup ( javax.swing.GroupLayout.Alignment.LEADING ).addGap ( 0, 300, Short.MAX_VALUE ) );
    
            pack ();
        }// </editor-fold>
    
        /**
         * @param args the command line arguments
         */
        public static void main ( String args[] )
        {
            /* Set the Nimbus look and feel */
            //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
            /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
            * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
            */
            try
            {
                for ( javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels () )
                {
                    if ( "Nimbus".equals ( info.getName () ) )
                    {
                        javax.swing.UIManager.setLookAndFeel ( info.getClassName () );
                        break;
                    }
                }
            }
            catch ( ClassNotFoundException ex )
            {
                java.util.logging.Logger.getLogger ( MyFrame.class.getName () ).log ( java.util.logging.Level.SEVERE, null, ex );
            }
            catch ( InstantiationException ex )
            {
                java.util.logging.Logger.getLogger ( MyFrame.class.getName () ).log ( java.util.logging.Level.SEVERE, null, ex );
            }
            catch ( IllegalAccessException ex )
            {
                java.util.logging.Logger.getLogger ( MyFrame.class.getName () ).log ( java.util.logging.Level.SEVERE, null, ex );
            }
            catch ( javax.swing.UnsupportedLookAndFeelException ex )
            {
                java.util.logging.Logger.getLogger ( MyFrame.class.getName () ).log ( java.util.logging.Level.SEVERE, null, ex );
            }
            //</editor-fold>
    
            /* Create and display the form */
            java.awt.EventQueue.invokeLater ( new Runnable ()
            {
                public void run ()
                {
                    new MyFrame ().setVisible ( true );
                }
            } );
        }
    
        class ShapeAction implements ActionListener
        {
            public void actionPerformed ( ActionEvent e )
            {
                JMenuItem clickedMenu = ( JMenuItem ) e.getSource ();
    
                if ( clickedMenu.getText ().equals ( "Square" ) )
                {
                    //implement abstract methods
                    MyShape aSquare = new ASquare ();
    
                }
                else if ( clickedMenu.getText ().equals ( "Circle" ) )
                {
                    //implement abstract methods
                    MyShape ACircle = new ACircle ();
    
                }
                else if ( clickedMenu.getText ().equals ( "Triangle" ) )
                {
                    //implement abstract methods
                    MyShape ATriangle = new ATriangle ();
    
                }
            }
        }
    }
    

    P.S. And you forgot one closing bracket in the end of your code. I have added it in the example through…

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have problem that says The specified named connection is either not found in
I'm doing a problem that says concatenate the words to generate the lexicographically lowest
I have a homework question that says: Problem 1: Given the array [ 22
I think the title says most of my problem. I am new to C
I have duplicate symbol _main. The problem is it says Duplicate symbol _main in
I have a simple problem that says: A password for xyz corporation is supposed
Okay, I'm NOT new to Objective-C but I encountered a strange bug, that i
Penz says that the problem could be solved by Multios and coproc features in
The code was: open_window(); for(i=0;i<100000;i++){ clear_the_window(); draw_frame(i); wait_until_a_24th_of_a_second_is_over(); } The book says the problem
There are many posts with probably with same question but the problem says it

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.