using System;
using System.Xml;
namespace umbraco.interfaces
{
///
/// Interface for created application trees in the umbraco backoffice
///
public interface ITree
{
///
/// Sets the tree id.
///
/// The id.
int id{set;}
///
/// Sets the applicatin alias.
///
/// The app.
String app {set;}
///
/// Renders the specified tree.
///
/// The tree.
void Render(ref XmlDocument Tree);
///
/// Renders the client side script associatied with the tree.
///
/// The javascript.
void RenderJS(ref System.Text.StringBuilder Javascript);
}
}