From: <hib...@li...> - 2006-05-19 15:04:09
|
Author: max...@jb... Date: 2006-05-19 11:04:02 -0400 (Fri, 19 May 2006) New Revision: 9939 Modified: trunk/HibernateExt/tools/src/java/org/hibernate/tool/ide/completion/HQLCompletionProposal.java Log: remove wrong comments Modified: trunk/HibernateExt/tools/src/java/org/hibernate/tool/ide/completion/HQLCompletionProposal.java =================================================================== --- trunk/HibernateExt/tools/src/java/org/hibernate/tool/ide/completion/HQLCompletionProposal.java 2006-05-19 14:44:38 UTC (rev 9938) +++ trunk/HibernateExt/tools/src/java/org/hibernate/tool/ide/completion/HQLCompletionProposal.java 2006-05-19 15:04:02 UTC (rev 9939) @@ -16,38 +16,25 @@ protected static final int LAST_KIND = ALIAS_REF; /** - * Kind of completion request. + * kind of completion request. */ private int completionKind; /** - * Offset in original buffer where ICodeAssist.codeComplete() was - * requested. + * original cursorposition in the query */ private int completionLocation; /** - * Completion string; defaults to empty string. + * The actual completion. */ private String completion = ""; - /** - * Start position (inclusive) of source range in original buffer - * to be replaced by completion string; - * defaults to empty subrange at [0,0). - */ - private int replaceStart = 0; - - /** - * End position (exclusive) of source range in original buffer - * to be replaced by completion string; - * defaults to empty subrange at [0,0). - */ + private int replaceStart = 0; private int replaceEnd = 0; /** - * Relevance rating; positive; higher means better; - * defaults to minimum rating. + * Relevance rating */ private int relevance = 1; |