A component is the fundamental user interface object in Java . Everything you see on the display in a Java application is a component. This includes things like windows, panels, buttons, checkboxes, scrollbars, lists, menus, and text fields. To be used, a component usually must be placed in a container.
Read moreWhich is commonly used methods of component class?
Commonly used Methods of Component class MethodDescriptionpublic void add(Component c)add a component on another component.public void setSize(int width,int height)sets size of the component.public void setLayout(LayoutManager m)sets the layout manager for the component.Java Swing Tutorial – javatpoint www.javatpoint.com › java-swing
Read more