| java.lang.Object org.netbeans.editor.ext.html.HTMLCompletionQuery
HTMLCompletionQuery | public class HTMLCompletionQuery implements CompletionQuery(Code) | | HTML completion results finder
author: Petr Nejedly version: 1.00 |
Inner Class :static class EndTagItem extends HTMLResultItem | |
Method Summary | |
public CompletionQuery.Result | query(JTextComponent component, int offset, SyntaxSupport support) Perform the query on the given component. | List | translateAttribs(int offset, int length, List attribs) | List | translateCharRefs(int offset, int length, List refs) | List | translateTags(int offset, int length, List tags) | List | translateValues(int offset, int length, List values) |
query | public CompletionQuery.Result query(JTextComponent component, int offset, SyntaxSupport support)(Code) | | Perform the query on the given component. The query usually gets the
component's document, the caret position and searches back to examine
surrounding context. Then it returns the result.
Parameters: component - the component to use in this query. Parameters: offset - position in the component's document to which the query willbe performed. Usually it's a caret position. Parameters: support - syntax-support that will be used during resolving of thequery. result of the query or null if there's no result. |
translateAttribs | List translateAttribs(int offset, int length, List attribs)(Code) | | |
translateCharRefs | List translateCharRefs(int offset, int length, List refs)(Code) | | |
translateTags | List translateTags(int offset, int length, List tags)(Code) | | |
translateValues | List translateValues(int offset, int length, List values)(Code) | | |
|
|