com.f1j.ss.pivot
Interface Preferences


public interface Preferences
extends Lockable

This interface provides access to the PivotRange preferences.

Since:
11.0

Inner Class Summary
static class Preferences.Factory
          Factory class for obtaining reference to the Preferences.
 
Method Summary
 void addListener(ChangeListener listener)
          Indicates the listener is interested in the preference events.
 boolean isSelectionEnabled()
          Indicates whether PivotRange style selections are enabled.
 boolean isShowingFieldList()
          Indicates whether the PivotRange Field List is visible.
 void removeListener(ChangeListener listener)
          Indicates the listener is no longer interested in the preference events.
 void setIsShowingFieldList(boolean value)
          Sets whether the PivotRange Field List should be shown.
 
Methods inherited from interface com.f1j.util.Lockable
getLock, releaseLock
 

Method Detail

addListener

public void addListener(ChangeListener listener)
Indicates the listener is interested in the preference events.
Parameters:
listener -  
Since:
11.0
See Also:
ChangeListener

isSelectionEnabled

public boolean isSelectionEnabled()
Indicates whether PivotRange style selections are enabled.
Returns:
boolean. true = if pivot selections are enabled.
Since:
11.0

isShowingFieldList

public boolean isShowingFieldList()
Indicates whether the PivotRange Field List is visible.
Returns:
boolean. true = if field list is visible.
Since:
11.0

removeListener

public void removeListener(ChangeListener listener)
Indicates the listener is no longer interested in the preference events.
Parameters:
listener -  
Since:
11.0
See Also:
ChangeListener

setIsShowingFieldList

public void setIsShowingFieldList(boolean value)
Sets whether the PivotRange Field List should be shown.
Parameters:
value - boolean. true = if field list should be shown.
Since:
11.0