]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.project/src/org/simantics/project/management/FeatureSpec.java
Merge commit '728147df5d63a3333daff3d8c0e9bfd4f5597e3a'
[simantics/platform.git] / bundles / org.simantics.project / src / org / simantics / project / management / FeatureSpec.java
1 /*******************************************************************************\r
2  * Copyright (c) 2007 VTT Technical Research Centre of Finland and others.\r
3  * All rights reserved. This program and the accompanying materials\r
4  * are made available under the terms of the Eclipse Public License v1.0\r
5  * which accompanies this distribution, and is available at\r
6  * http://www.eclipse.org/legal/epl-v10.html\r
7  *\r
8  * Contributors:\r
9  *     VTT Technical Research Centre of Finland - initial API and implementation\r
10  *******************************************************************************/\r
11 package org.simantics.project.management;\r
12 \r
13 /**\r
14  * A project feature specification. \r
15  *\r
16  * @author Toni Kalajainen <toni.kalajainen@vtt.fi>\r
17  */\r
18 public class FeatureSpec {\r
19 \r
20         /** Display name */\r
21         public String name;\r
22                 \r
23         /** If true, this feature is required for all clients working with this project */ \r
24         public boolean required;\r
25         \r
26         /** Install group id (P2 IU) */\r
27         public String versionedId;\r
28         \r
29         \r
30         \r
31 }\r
32 \r