Capponi Francesco

- Total activity 12
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 2
- Subscriptions 4
-
Capponi Francesco commented, -
Capponi Francesco created a post, Inspecting libraries' code, BaseJavaLocalInspectionTool doesn't work
I was trying to give advice to the user on the current class he's viewing with BaseJavaLocalInspectionTool, but it works only on the project's classes, and not on the files inside libraries. When I... -
Capponi Francesco created a post, AnsweredFix to Create a static final field in class
How can I create a fix to generate a final static field only? Right now with the following code, it generates also the getter and the setter, but I was trying to avoid it. About the "final" and "st... -
Capponi Francesco commented, -
Capponi Francesco created a post, AnsweredCreate Expression from text OpenApi
How can I create a simple PsiExpression like the one below? String variable = "hello"; --> "myString"+variable+"otherString" After having created it I would like to parse it with the following c... -
Capponi Francesco created a post, AnsweredFind PsiClass knowing only the name and the context, but not the package
I'd like to find a PsiClass knowing only the name, but not the package. For example, I could be inside a file that imports java.lang.String and declares another class. Now I'd like to get the PsiCl...