Content


NTL
Core
IPropertyIntegerArrayState

IPropertyIntegerArrayState



Describes multiple state property of type integer-array.

You can find more information in comments below. Overrided methods can be found in corresponding base interface.

class IPropertyIntegerArrayState :public virtual IPropertyState
{
public:
    virtual IntegerArray getValue(const String &state) = 0; // Return value depending on state
    virtual int getMinCount() = 0; // Return minimum allowed item count in array
    virtual bool hasMin() = 0; // Whether has minimum limit
    virtual bool hasMax() = 0; // Whether has maximum limit
    virtual int getMin() = 0; // Return minimum limit
    virtual int getMax() = 0; // Return maximum limit

    virtual bool setValue(const String &state, const IntegerArray value) = 0; // Set value of state
    virtual IPropertyIntegerArrayState *setMinCount(const int value) = 0; // Set minimum allowed item count in array
    virtual IPropertyIntegerArrayState *setHasMin(const bool value) = 0; // Set whether has minimum limit
    virtual IPropertyIntegerArrayState *setHasMax(const bool value) = 0; // Set whether has maximum limit
    virtual IPropertyIntegerArrayState *setMin(const int value) = 0; // Set minimum limit and hasMin to true
    virtual IPropertyIntegerArrayState *setMax(const int value) = 0; // Set maximum limit and hasMax to true
};
Namespace: nitisa
Include: Nitisa/Package/Interfaces/IPropertyIntegerArrayState.h