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