1 /*******************************************************************************
2 * Copyright (c) 2013 University of Stuttgart.
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 * and the Apache License 2.0 which both accompany this distribution,
6 * and are available at http://www.eclipse.org/legal/epl-v10.html
7 * and http://www.apache.org/licenses/LICENSE-2.0
10 * Oliver Kopp - initial API and implementation
11 *******************************************************************************/
12 package org.eclipse.winery.common.beans;
21 * The name field is optional
23 public class NamespaceIdOptionalName {
25 private String namespace;
27 private String name = null;
30 public NamespaceIdOptionalName() {
34 public String getNamespace() {
35 return this.namespace;
38 public void setNamespace(String namespace) {
39 this.namespace = namespace;
42 public String getId() {
46 public void setId(String id) {
50 public String getName() {
54 public void setName(String name) {