I would like to know if in java you have how to specify a tag, or manifest, or something of the type for a class or library and can query this within the Java code itself type:
@version 2.6.5
Class Pessoa {
...
}
and in another part of the code
if (Class.getVersion(Pessoa) < 2.7)
{
mensage.Aviso("Biblioteca de Pessoas em uma versão antiga. Atualize-o");
}