java - /* (non-javadoc) meaning -


possible duplicate:
does “/* (non-javadoc)” have well-understood meaning?

what following statements mean?

    /* (non-javadoc)      *       * standard class loader method load class , resolve it.      *       * @see java.lang.classloader#loadclass(java.lang.string)      */     @suppresswarnings("unchecked") 

i have seen message generated eclipse when programmer asks eclipse add javadoc comment code in location [edit: eclipse thinks] javadoc tool not use it.

a common example implementation of method in interface implemented class (which in java 6 needs @override annotation). javadoc use javadoc placed on method in interface, not 1 provided in implementation.

the rest of comment written person did not know this.


Comments

Popular posts from this blog

c# - How to set Z index when using WPF DrawingContext? -

razor - Is this a bug in WebMatrix PageData? -

visual c++ - Using relative values in array sorting ( asm ) -