Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[mylyn-dev] API versioning

I'm adding some new API to WikiText.  I've got a question about @since tags.  Since WikiText 1.2 is released, I expect to have to specify @since tags with 1.3, for example:

 /**

* Indicate if the builder should attempt to conform to strict XHTML rules. The default is false.

* @see HtmlDocumentBuilder#isXhtmlStrict()

* @since 1.3

*/

public boolean isXhtmlStrict() {

return xhtmlStrict;

}


However, PDE API tooling is saying I should have @since 1.2


Am I missing something here or is there something possibly wrong with my baseline?


Thanks,


David


Back to the top