package com.onaro.sanscreen.client.view.tabular; import java.util.Map; import com.onaro.sanscreen.client.job.QueryJob; import com.onaro.sanscreen.client.view.ViewType; public interface ITabularDirectorLoaderSite { /** * Get the display name of the site. */ public String getSiteName(); public QueryJob.Listener getQueryJobProcessor(); /** * Optional map of query modifiers. These modifiers are added to every job submitted by this view. */ public Map getQueryModifiers(); public NavigationInfo getNavigationInfo(); /** * Get the type of the director using the loader * @return the ViewType of the director. */ public ViewType getViewType(); /** * Instruct the site to display the subtitle text (if the view supports subtitle displays) * @param text */ public void setSubTitleText(String text); }