what is the use of custom tags? with example?
Answer / namita
custom tags are userdefined tags.
use of custom tags is u can defined ur own tags in ur code.
u need not to depend upon system defined tags. u can create
and use ur own tags.
eg,
<email>
<to></to>
<from></from>
</email>
u just need to define this tags in xml file and use that
tags in ur code by including <@taglib> directive.
| Is This Answer Correct ? | 2 Yes | 0 No |
Why to use nested classes in java? (Or) what is the purpose of nested class in java?
Does string is thread-safe in java?
What is the difference between an interface and an abstract class?
Is main an identifier?
Explain listiterator and methods in listiterator?
public class Test { public static void main(String[] args) { int countA = 0; int countB = 0; int countC = 0; int countD = 0; int countE = 0; int countF = 0; int countG = 0; int countH = 0; int countI = 0; int countJ = 0; int countK = 0; int countL = 0; int countM = 0; int countN = 0; int countO = 0; int countP = 0; int countQ = 0; int countR = 0; int countS = 0; int countT = 0; int countU = 0; int countV = 0; int countW = 0; int countX = 0; int countY = 0; int countZ = 0; } } Can anybody tell me any alternate solution(like loop or something) to automate this initialization process. Ex:- for(char chr='A';chr<='Z'; chr++) { (int) String "count"+chr = 0; }
Is it safe for adding 10,00,000 records/objects to HashMap?, i.e is it safe to add millions of objects to HashMap?
What is google full form?
What is close method? How it's different from Finalize & Dispose?
0 Answers InfoAxon Technologies,
What is the use of static methods?
"We cannot create an object of interface but we can create a variable of it". Discuss the statement with the help of an example. (Plz help us to provide immediately.)
What is the significance of continue jump statement? Explain with an example.