package com.ericfeminella.resources
{
/**
*
* Defines the contract for classes which must provide
* an API for writing properties to a resource bundle
*
*/
public interface IResourceWriter
{
/**
*
* Writes a new property of type Boolean to the file
*
* @param the name or key of the property to create
* @param the value of the specified key
*
*/
function writeBoolean(name:String, value:Boolean) : void
/**
*
* Writes a new property of type Number to the file
*
* @param the name or key of the property to create
* @param the value of the specified key
*
*/
function writeNumber(name:String, value:Number) : void
/**
*
* Writes a new property of type String to the file
*
* @param the name or key of the property to create
* @param the value of the specified key
*
*/
function writeString(name:String, value:String) : void
/**
*
* Writes a new property of type StringArray to the file
*
* @param the name or key of the property to create
* @param the value of the specified key
*
*/
function writeStringArray(name:String, value:Array) : void
/**
*
* Writes a new comment to the resource bundle
*
* @param the name or key of the property to create
* @param the value of the specified key
*
*/
function writeComment(comment:String) : void
}
}