Class StorageModuleSettings
- java.lang.Object
-
- de.extio.spacecraft.shared.model.client.settings.StorageModuleSettings
-
public final class StorageModuleSettings extends Object
StorageModuleSettings * Set either sources (1 or more StorageProviderEntity entities) or altSource (StorageProviderEntity not being an AbstractEntity) * Destination is optional
Acquire with:EngineFacade.instance().getClientState().getState().get("StorageModuleSettings")
-
-
Constructor Summary
Constructors Constructor Description StorageModuleSettings()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StorageProviderEntity
getAltSource()
CompositeAndEntityId
getDestination()
RenderingBoLayer
getLayer()
List<CompositeAndEntityId>
getSources()
boolean
isFreshReset()
void
reset()
void
setAltSource(StorageProviderEntity altSource)
void
setDestination(CompositeAndEntityId destination)
void
setFreshReset(boolean freshReset)
void
setLayer(RenderingBoLayer layer)
void
setSources(List<CompositeAndEntityId> sources)
-
-
-
Method Detail
-
reset
public void reset()
-
getSources
public List<CompositeAndEntityId> getSources()
-
setSources
public void setSources(List<CompositeAndEntityId> sources)
-
getDestination
public CompositeAndEntityId getDestination()
-
setDestination
public void setDestination(CompositeAndEntityId destination)
-
isFreshReset
public boolean isFreshReset()
-
setFreshReset
public void setFreshReset(boolean freshReset)
-
getLayer
public RenderingBoLayer getLayer()
-
setLayer
public void setLayer(RenderingBoLayer layer)
-
getAltSource
public StorageProviderEntity getAltSource()
-
setAltSource
public void setAltSource(StorageProviderEntity altSource)
-
-