Compiler Error J0210

Expected '.'

The compiler detected that the specified comment tag's declaration (for example @com, @dll) is missing a period after the comment tag (for example @com.method). This error can also occur if another symbol or character obscures the period symbol from being evaluated by the compiler. Ensure that your comment tag declaration contains a period after the comment tag and compile again.

The following example illustrates this error:

/**@com class*/
//error: missing '.' from @com statement

public class Simple{
   //Do something meaningful here
}