You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@netbeans.apache.org by GitBox <gi...@apache.org> on 2022/10/01 19:32:00 UTC

[GitHub] [netbeans] matthiasblaesing commented on pull request #4440: [NETBEANS4428] Initial work on "is/get/set prefixes" bug

matthiasblaesing commented on PR #4440:
URL: https://github.com/apache/netbeans/pull/4440#issuecomment-1264460690

   Maybe I'm missing something obvious, but from my perspective the issue description is solved by enabling "Subword completion":
   
   ![image](https://user-images.githubusercontent.com/2179736/193425274-0433d182-151d-479a-8dab-ba7f48520fff.png)
   
   with that I get this:
   
   ![image](https://user-images.githubusercontent.com/2179736/193425295-0bd70f9a-90a1-44f9-849e-b95587927f11.png)
   
   for this code:
   
   ```java
   public class Test {
       public static void main(String[] args) {
           Test t = new Test();
       }
   
       private int demoNumber;
   
       public int getDemoNumber() {
           return demoNumber;
       }
   
       public void setDemoNumber(int demoNumber) {
           this.demoNumber = demoNumber;
       }
   }
   ```
   
   I don't see reason to make CC more complex.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists