Provide a complete program that displays this
Hello Worldmessage:

Note these label characteristics: (1) a raised bevel border, (2) italics, (3) a large font size (30 points), (4) a tool tip that says “Life is Great!” Use this program skeleton as a starting point:
import javax.swing.*;import java.awt.*;//**********************************************************public class BigHello extends JFrame{ public BigHello() { JLabel label = ; setSize(200, ); setLayout(new FlowLayout()); add(label); <3-statement code fragment> setVisible(true); } // end constructor //********************************************************** public static void main(String[] args) { BigHello hello = new BigHello(); } // end main} // end BigHello classTo figure out how to do this, in Java’s API, look up the
setFont, setBorder,and
setToolTipTextmethods that
JLabelinherits from
JComponent.For the
setFontargument, use
Component’s getFontto get the default font, and then alter it by using
Font’stwo-parameter
deriveFontmethod in which the first parameter specifies an italic font style and the second parameter specifies a 30-point size. Use
JComponent’s setBordermethod, and for its
Borderargument, use the appropriate class method from the
BorderFactoryclass.
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.