Ext.namespace('Zarafa.common.rules.dialogs'); /** * @class Zarafa.common.rules.dialogs.BaseLink * @extends Ext.Container * @xtype zarafa.baselink * * Base class for RuleLinks. */ Zarafa.common.rules.dialogs.BaseLink = Ext.extend(Ext.Container, { /** * The Condition type which is handled by this view * This is set during {@link #setCondition}. * @property * @type Zarafa.common.rules.data.ConditionFlags */ conditionFlag : undefined, /** * The condition property which was configured during * {@link #setCondition}. * @property * @type Object */ condition : undefined, /** * True if the condition was modified by the user, if this is false, * then {@link #getCondition} will return {@link #condition} instead * of returning a new object. * @property * @type Boolean */ isModified : false, /** * Apply an action onto the DataView, this will parse the condition and show * the contents in a user-friendly way to the user. * @param {Zarafa.common.rules.data.ConditionFlags} conditionFlag The condition type * which identifies the exact type of the condition. * @param {Object} condition The condition to apply */ setCondition : function(conditionFlag, condition) { this.conditionFlag = conditionFlag; this.condition = condition; this.isModified = !Ext.isDefined(condition); } }); Ext.reg('zarafa.baselink', Zarafa.common.rules.dialogs.BaseLink);