/** * */ package com.onaro.sanscreen.client; /** * This class provides a method to set the completeness of the data objects. */ public interface IWarningRequired { /** * @return Indicates if it's not possible to know if all referenced items have been loaded. * For some micro views displaying elements for certain main view selections, OCI * can't determine all the elements that should be displayed. An example in Hood * is that all the disks of a volume can't be determined if the volume uses auto * (dynamic) tiering. The table may or may not contain all the disks used by * the volume. In that case, this method would return {@code true}. The GUI uses this * information to let the user know that the element (row) count may be wrong. */ public boolean isWarningRequired(); }