/ABB.SrcML.Core/ISrcMLArchive.cs
https://github.com/nkcsgexi/SrcML.NET · C# · 19 lines · 14 code · 5 blank · 0 comment · 0 complexity · 45432eb1e2f18bccea95b4cc205e03f0 MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Collections.ObjectModel;
- using System.Linq;
- using System.Text;
- using System.Xml.Linq;
- namespace ABB.SrcML {
- public interface ISrcMLArchive : IArchive {
- IEnumerable<XElement> FileUnits { get; }
- string GetXmlPath(string sourcePath);
- XElement GetXElementForSourceFile(string sourceFilePath);
- bool IsValidFileExtension(string filePath);
- }
- }