Depricated method

Hi , Can anyone help me,What is deprcate method ? How do we manage the Depricate exception. ? whth detail explanation....... THANX in advance kir
[180 byte] By [p.v.k.ka] at [2007-10-2 21:19:02]
# 1

Some context perhaps?

For starters, it's deprEcated. Deprecated in the context of API docs means "sort of obsolete". If a class or method is javadoc'd or annotated as deprecated, it means it may at some point disappear from the API, but it's still there for the time being. Usually it is indicated what the preferred replacement is.

So, you should not use deprecated classes/methods in any new code, and at some point may have to rework your old code to use the preferred way.

Lokoa at 2007-7-14 0:28:09 > top of Java-index,Java Essentials,New To Java...