1:   //  ProjectCreateInformation.cs
2:   //  Copyright (c) 2001 Mike Krueger
3:   //
4:   //  This program is free software; you can redistribute it and/or modify
5:   //  it under the terms of the GNU General Public License as published by
6:   //  the Free Software Foundation; either version 2 of the License, or
7:   //  (at your option) any later version.
8:   //
9:   //  This program is distributed in the hope that it will be useful,
10:   //  but WITHOUT ANY WARRANTY; without even the implied warranty of
11:   //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12:   //  GNU General Public License for more details.
13:   //
14:   //  You should have received a copy of the GNU General Public License
15:   //  along with this program; if not, write to the Free Software
16:   //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17:  
18:   using System.Collections;
19:   using System.Windows.Forms;
20:   using System.Xml;
21:  
22:   using SharpDevelop.Internal.Templates;
23:   using SharpDevelop.Gui.Edit;
24:   using SharpDevelop.Gui;
25:  
26:   namespace SharpDevelop.Internal.Project {
27:       
28:       /// <summary>
29:       /// This class holds all information the language binding need to create
30:       /// a predefined project for their language, if no project template for a 
31:       /// specific language is avaible, the language binding shouldn't care about
32:       /// this stuff.
33:       /// </summary>
34:       public class ProjectCreateInformation
35:       {
36:           string name;
37:           string solution;
38:           string location;
39:           string description// not yet used
40:           
41:           ProjectTemplate projectTemplate;
42:           
43:           public string Name {
44:               get {
45:                   return name;
46:               }
47:               set {
48:                   name value;
49:               }
50:           }
51:           
52:           public string Solution {
53:               get {
54:                   return solution;
55:               }
56:               set {
57:                   solution value;
58:               }
59:           }
60:  
61:           public string Location {
62:               get {
63:                   return location;
64:               }
65:               set {
66:                   location value;
67:               }
68:           }
69:  
70:           public string Description {
71:               get {
72:                   return description;
73:               }
74:               set {
75:                   description value;
76:               }
77:           }
78:  
79:           public ProjectTemplate ProjectTemplate {
80:               get {
81:                   return projectTemplate;
82:               }
83:               set {
84:                   projectTemplate value;
85:               }
86:           }
87:       }
88:   }

This page was automatically generated by SharpDevelop.