javax.annotation.processing
Class Completions

java.lang.Object
  extended by javax.annotation.processing.Completions

public class Completions
extends java.lang.Object

Utility class for assembling Completions.SimpleCompletion objects.

Since:
1.6

Nested Class Summary
private static class Completions.SimpleCompletion
           
 
Constructor Summary
private Completions()
           
 
Method Summary
static Completion of(java.lang.String value)
          Returns a completion of the value and an empty message
static Completion of(java.lang.String value, java.lang.String message)
          Returns a completion of the value and message.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Completions

private Completions()
Method Detail

of

public static Completion of(java.lang.String value,
                            java.lang.String message)
Returns a completion of the value and message.

Parameters:
value - the text of the completion
message - a message about the completion
Returns:
a completion of the provided value and message

of

public static Completion of(java.lang.String value)
Returns a completion of the value and an empty message

Parameters:
value - the text of the completion
Returns:
a completion of the value and an empty message