workspace-explorer-app/src/main/java/org/gcube/portlets/user/workspaceexplorerapp/client/view/ShowableTypes.java

34 lines
604 B
Java

/**
*
*/
package org.gcube.portlets.user.workspaceexplorerapp.client.view;
import java.util.List;
import org.gcube.portlets.user.workspaceexplorerapp.shared.ItemType;
/**
* The Interface ShowableTypes.
*
* @author Francesco Mangiacrapa francesco.mangiacrapa@isti.cnr.it
* Jun 29, 2015
*/
public interface ShowableTypes {
/**
* Gets the showable types.
*
* @return the showable types
*/
public List<ItemType> getShowableTypes();
/**
* Sets the showable types.
*
* @param showableTypes the new showable types
*/
public void setShowableTypes(ItemType ... showableTypes);
}