FileDocCategorySizeDatePackage
Completions.javaAPI DocJava SE 6 API1769Tue Jun 10 00:26:04 BST 2008javax.annotation.processing

Completions

public class Completions extends Object
Utility class for assembling {@link Completion} objects.
author
Joseph D. Darcy
author
Scott Seligman
author
Peter von der Ahé
version
1.2 06/07/31
since
1.6

Fields Summary
Constructors Summary
private Completions()

Methods Summary
public static javax.annotation.processing.Completionof(java.lang.String value, java.lang.String message)
Returns a completion of the value and message.

param
value the text of the completion
param
message a message about the completion
return
a completion of the provided value and message

	return new SimpleCompletion(value, message);
    
public static javax.annotation.processing.Completionof(java.lang.String value)
Returns a completion of the value and an empty message

param
value the text of the completion
return
a completion of the value and an empty message

	return new SimpleCompletion(value, "");