| | |
| | | setTrusted(null, true); |
| | | } |
| | | |
| | | // Issue warning if this vlvIndex is not trusted |
| | | if(!trusted) |
| | | { |
| | | logError(NOTE_JEB_INDEX_ADD_REQUIRES_REBUILD.get(name)); |
| | | } |
| | | |
| | | this.count = new AtomicInteger(0); |
| | | this.config.addChangeListener(this); |
| | | } |
| | |
| | | } |
| | | |
| | | /** |
| | | * Return true iff this index is trusted. |
| | | * @return the trusted state of this index |
| | | */ |
| | | public boolean isTrusted() |
| | | { |
| | | return trusted; |
| | | } |
| | | |
| | | /** |
| | | * Set the rebuild status of this vlvIndex. |
| | | * @param rebuildRunning True if a rebuild process on this vlvIndex |
| | | * is running or False otherwise. |