Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/addins/TextTemplating/Mono.TextTemplating/Microsoft.VisualStudio.TextTemplating/Interfaces.cs')
-rw-r--r--main/src/addins/TextTemplating/Mono.TextTemplating/Microsoft.VisualStudio.TextTemplating/Interfaces.cs104
1 files changed, 0 insertions, 104 deletions
diff --git a/main/src/addins/TextTemplating/Mono.TextTemplating/Microsoft.VisualStudio.TextTemplating/Interfaces.cs b/main/src/addins/TextTemplating/Mono.TextTemplating/Microsoft.VisualStudio.TextTemplating/Interfaces.cs
deleted file mode 100644
index bf7f62a23d..0000000000
--- a/main/src/addins/TextTemplating/Mono.TextTemplating/Microsoft.VisualStudio.TextTemplating/Interfaces.cs
+++ /dev/null
@@ -1,104 +0,0 @@
-//
-// ITextTemplatingEngineHost.cs
-//
-// Author:
-// Michael Hutchinson <mhutchinson@novell.com>
-//
-// Copyright (c) 2009-2010 Novell, Inc. (http://www.novell.com)
-//
-// Permission is hereby granted, free of charge, to any person obtaining a copy
-// of this software and associated documentation files (the "Software"), to deal
-// in the Software without restriction, including without limitation the rights
-// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-// copies of the Software, and to permit persons to whom the Software is
-// furnished to do so, subject to the following conditions:
-//
-// The above copyright notice and this permission notice shall be included in
-// all copies or substantial portions of the Software.
-//
-// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-// THE SOFTWARE.
-
-using System;
-using System.Text;
-using System.CodeDom.Compiler;
-using System.Collections.Generic;
-using System.Collections;
-using System.Runtime.Serialization;
-using System.CodeDom;
-
-namespace Microsoft.VisualStudio.TextTemplating
-{
- public interface IRecognizeHostSpecific
- {
- void SetProcessingRunIsHostSpecific (bool hostSpecific);
- bool RequiresProcessingRunIsHostSpecific { get; }
- }
-
- [CLSCompliant(true)]
- public interface ITextTemplatingEngine
- {
- string ProcessTemplate (string content, ITextTemplatingEngineHost host);
- string PreprocessTemplate (string content, ITextTemplatingEngineHost host, string className,
- string classNamespace, out string language, out string[] references);
- }
-
- [CLSCompliant(true)]
- public interface ITextTemplatingEngineHost
- {
- object GetHostOption (string optionName);
- bool LoadIncludeText (string requestFileName, out string content, out string location);
- void LogErrors (CompilerErrorCollection errors);
- AppDomain ProvideTemplatingAppDomain (string content);
- string ResolveAssemblyReference (string assemblyReference);
- Type ResolveDirectiveProcessor (string processorName);
- string ResolveParameterValue (string directiveId, string processorName, string parameterName);
- string ResolvePath (string path);
- void SetFileExtension (string extension);
- void SetOutputEncoding (Encoding encoding, bool fromOutputDirective);
- IList<string> StandardAssemblyReferences { get; }
- IList<string> StandardImports { get; }
- string TemplateFile { get; }
- }
-
- [CLSCompliant(true)]
- public interface ITextTemplatingSession :
- IEquatable<ITextTemplatingSession>, IEquatable<Guid>, IDictionary<string, Object>,
- ICollection<KeyValuePair<string, Object>>,
- IEnumerable<KeyValuePair<string, Object>>,
- IEnumerable, ISerializable
- {
- Guid Id { get; }
- }
-
- [CLSCompliant(true)]
- public interface ITextTemplatingSessionHost
- {
- ITextTemplatingSession CreateSession ();
- ITextTemplatingSession Session { get; set; }
- }
-
- public interface IDirectiveProcessor
- {
- CompilerErrorCollection Errors { get; }
- bool RequiresProcessingRunIsHostSpecific { get; }
-
- void FinishProcessingRun ();
- string GetClassCodeForProcessingRun ();
- string[] GetImportsForProcessingRun ();
- string GetPostInitializationCodeForProcessingRun ();
- string GetPreInitializationCodeForProcessingRun ();
- string[] GetReferencesForProcessingRun ();
- CodeAttributeDeclarationCollection GetTemplateClassCustomAttributes (); //TODO
- void Initialize (ITextTemplatingEngineHost host);
- bool IsDirectiveSupported (string directiveName);
- void ProcessDirective (string directiveName, IDictionary<string, string> arguments);
- void SetProcessingRunIsHostSpecific (bool hostSpecific);
- void StartProcessingRun (CodeDomProvider languageProvider, string templateContents, CompilerErrorCollection errors);
- }
-}