biweekly.io.text
Interface ICalRawWriter.ParameterValueChangedListener

Enclosing class:
ICalRawWriter

public static interface ICalRawWriter.ParameterValueChangedListener

Allows you to respond to when a parameter's value is changed due to it containing invalid characters. If a character can be escaped (such as the "^" character when caret encoding is enabled), then this does not count as the parameter being modified because it can be decoded without losing any information.

Author:
Michael Angstadt

Method Summary
 void onParameterValueChanged(String propertyName, String parameterName, String originalValue, String modifiedValue)
          Called when a parameter value is changed.
 

Method Detail

onParameterValueChanged

void onParameterValueChanged(String propertyName,
                             String parameterName,
                             String originalValue,
                             String modifiedValue)
Called when a parameter value is changed.

Parameters:
propertyName - the name of the property to which the parameter belongs
parameterName - the parameter name
originalValue - the original parameter value
modifiedValue - the modified parameter value


Copyright © 2013 Michael Angstadt. All Rights Reserved.