But there's already a package called Format imported (java.text.Format). Is there a way to import this method, or should I just type the full name?
Thanks, Lajos
Ramen Chatterjee
Ranch Hand
Joined: Apr 27, 2006
Posts: 62
posted
0
Hi
You will need to import both (using package wildcards or fully qualified names), and then use the fully qualifed name when you declare/initialise your variables.
You will need to import both (using package wildcards or fully qualified names), and then use the fully qualifed name when you declare/initialise your variables.
No - if you use fully qualified names when you declare your variables, you do not need to import them.