2024-10-25 06:28:58 +00:00
|
|
|
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;
|
2024-10-25 06:28:58 +00:00
|
|
|
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 );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|