rokojori_action_library/Runtime/XML/XMLElementSelector.cs

23 lines
463 B
C#
Raw Normal View History

using System.Collections;
using System.Collections.Generic;
using System.Text.RegularExpressions;
using System.Text;
2026-05-22 12:25:02 +00:00
using Rokojori.Extensions;
namespace Rokojori
{
public interface XMLElementSelector
{
bool Selects( XMLElementNode elementNode );
string selector { get; }
}
public class XMLElementSelectors
{
public static XMLElementSelector From( string selector )
{
return XMLElementNodeName.Create( selector );
}
}
}