Name the method that is used to set a TextComponent to the
read-only state?
The setEditable( boolean b ) is used to set a TextComponent
to a read-only state
| Is This Answer Correct ? | 5 Yes | 0 No |
explain about jre and jvm
Which non-unicode letter characters may be used as the first character of an identifier?
How do you sort a string in alphabetical order in java?
What are the pillars of java?
What is the difference between form & report?
what is the meaning of java.lang and java.util
abstract class Demo { public void show() { System.out.println("Hello I am In show method of Abstract class"); } } class Sample extends Demo { public void show() { super.show(); System.out.println("Hello I am In Sample "); } } public class Test { public static void main(String[] args) { //I WANT TO CALL THE METHOD OF BASE CLASS IT IS POSSIBLE OR NOT CAN WE USE SCOPE RESOLUTION OPERATOR TO CALL OR JAVA NOT SUPPORTED THAT :: OPERATORE } }
What is a method in programming?
Is string is a data type?
Can you override static methods?
What is the difference between inner class and nested class?
What are the types of literals?