Add a NameCompletionTable, which is more optimized than the more general NameSource
( NameCompletionTable table )
| 52 | general NameSource |
| 53 | */ |
| 54 | public void add( NameCompletionTable table ) { |
| 55 | /** Unimplemented - need a collection here */ |
| 56 | if ( this.table != null ) |
| 57 | throw new RuntimeException("Unimplemented usage error"); |
| 58 | |
| 59 | this.table = table; |
| 60 | } |
| 61 | |
| 62 | /** |
| 63 | Add a NameSource which is monitored for names. |
no outgoing calls
no test coverage detected