2013-10-21 18:36:46 +11:00
using System ;
using System.Collections.Generic ;
2012-09-24 20:54:26 -01:00
using umbraco.NodeFactory ;
namespace umbraco.editorControls.XPathCheckBoxList
{
2013-10-21 18:36:46 +11:00
[Obsolete("IDataType and all other references to the legacy property editors are no longer used this will be removed from the codebase in future versions")]
2012-09-24 20:54:26 -01:00
public class XPathCheckBoxList : uQuery . IGetProperty
{
public XPathCheckBoxList ( )
{
}
void uQuery . IGetProperty . LoadPropertyValue ( string value )
{
this . SelectedNodes = uQuery . GetNodesByXml ( value ) ;
}
public IEnumerable < Node > SelectedNodes
{
get ;
private set ;
}
}
}