也许这是一个非常愚蠢的问题。请理解和原谅。我正在尝试找到一种方法来实现可以更改方法参数的注释。
请看代码:
/**
* 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 注释验证路径的位置(应该至少具有读取访问权限,并且当然应该存在)。另外我想确保每条路径都以“/”结尾。因此,如果行尾不存在“/”,则此注释应将“/”附加到参数值。
我怎样才能做到这一点?
我尝试过像:java注释更改方法参数值,获取方法参数值等但没有找到对我有用的东西:(请建议。