⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 javaproject.cs

📁 全功能c#编译器
💻 CS
字号:
// <file>
//     <copyright see="prj:///doc/copyright.txt"/>
//     <license see="prj:///doc/license.txt"/>
//     <owner name="Mike Krüger" email="mike@icsharpcode.net"/>
//     <version value="$version"/>
// </file>

using System;
using System.IO;
using System.Collections;
using System.Diagnostics;
using System.ComponentModel;
using System.Xml;

using ICSharpCode.SharpDevelop.Internal.Project;
using ICSharpCode.SharpDevelop.Internal.Templates;

namespace JavaBinding
{
	
	/// <summary>
	/// This class describes a C Sharp project and it compilation options.
	/// </summary>
	public class JavaProject : AbstractProject
	{		
		public override string ProjectType {
			get {
				return JavaLanguageBinding.LanguageName;
			}
		}
		
		public override IConfiguration CreateConfiguration()
		{
			return new JavaCompilerParameters();
		}
		
		public JavaProject()
		{
		}
		
		public JavaProject(ProjectCreateInformation info, XmlElement projectOptions)
		{
			if (info != null) {
				Name = info.ProjectName;
				
				Configurations.Add(CreateConfiguration("Debug"));
				Configurations.Add(CreateConfiguration("Release"));
				
				XmlElement el = projectOptions;
				
				foreach (JavaCompilerParameters parameter in Configurations) {
					parameter.OutputDirectory = info.BinPath;
					parameter.OutputAssembly  = Name;
					
					if (el != null) {
						if (el.Attributes["MainClass"] != null) {
							parameter.MainClass = el.Attributes["MainClass"].InnerText;
						}
						if (el.Attributes["PauseConsoleOutput"] != null) {
							parameter.PauseConsoleOutput = Boolean.Parse(el.Attributes["PauseConsoleOutput"].InnerText);
						}
						if (el.Attributes["ClassPath"] != null) {
							parameter.ClassPath = el.Attributes["ClassPath"].InnerText;
						}
					}
				}
			}
		}
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -