也许这是非常愚蠢的问题。请理解并原谅。 我正在尝试找到一种方法来实现可以改变方法参数的注释。
请参阅代码:
/**
* This method does some scary things in OS file system.
* @param anyFileSystemPath is a file system path :)
*/
public File makeSomeFileSystemStuff(String anyFileSystemPath){
//some code goes here...
}
我想创建一个注释:
public File makeSomeFileSystemStuff(@IsValid String anyFileSystemPath){
//some code goes here...
}
其中@IsValid注释验证路径(至少应具有读访问权限,当然应该存在)。另外,我想确保每条路径以“/”结尾。因此,如果行末不存在“/”,则此注释应将“/”附加到参数值。
我该怎么做?
我试图像goolge一样:java注释更改方法参数值,获取方法参数值,e.t.c。但没有找到对我有用的东西:( 请指教。