You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by "高浩 (Jira)" <ji...@apache.org> on 2020/07/24 19:06:00 UTC

[jira] [Updated] (NETBEANS-4632) Enhanced code completion: Provide Java qualified class name code-completion in String literal

     [ https://issues.apache.org/jira/browse/NETBEANS-4632?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

高浩 updated NETBEANS-4632:
-------------------------
    Description: 
For example:

 
{code:java}
Class.forName("HashMap^")

{code}
when invoking code completion at the ^ position, provide the *java.util.HashMap* proposal  so that we can select it to turn the code into:
{code:java}
Class.forName("java.util.HashMap")

{code}
 

 

  was:
For example:

 
{code:java}

Class.forName("HashMap^")

{code}
when invoking code completion at the ^ position, provide the *java.util.HashMap* proposal ** so that we can select it to turn the code into:
{code:java}

Class.forName("java.util.HashMap")

{code}
 

 


> Enhanced code completion: Provide Java qualified class name code-completion in String literal
> ---------------------------------------------------------------------------------------------
>
>                 Key: NETBEANS-4632
>                 URL: https://issues.apache.org/jira/browse/NETBEANS-4632
>             Project: NetBeans
>          Issue Type: Improvement
>          Components: editor - Completion &amp; Templates, java - Editor
>            Reporter: 高浩
>            Priority: Major
>
> For example:
>  
> {code:java}
> Class.forName("HashMap^")
> {code}
> when invoking code completion at the ^ position, provide the *java.util.HashMap* proposal  so that we can select it to turn the code into:
> {code:java}
> Class.forName("java.util.HashMap")
> {code}
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

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

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