Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5f6f2b688023c2cd253197e1dcd33e4bb7026568 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/*****************************************************************************
 * Copyright (c) 2012 CEA LIST.
 *
 *    
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *  Saadia DHOUIB (CEA LIST) - Initial API and implementation
 *
 *****************************************************************************/
package org.eclipse.papyrus.uml.export.util;


// TODO: Auto-generated Javadoc
/**
 * The Class InstalledProfileURI.
 */
public class InstalledProfileURI {

	/**
	 * Instantiates a new installed profile uri.
	 * 
	 * @param uri_installed
	 *        the uri of the installed profile
	 * @param uri_local
	 *        the uri of the corresponding local profile from which the installed profile has been copied
	 */
	public InstalledProfileURI(String uri_installed, String uri_local) {
		super();
		this.uri_installed = uri_installed;
		this.uri_local = uri_local;
	}

	/** The uri of the installed profile. */
	public String uri_installed;

	/** The uri of the local profile. */
	public String uri_local;

	/**
	 * Gets the uri of the installed profile.
	 * 
	 * @return the uri of the installed profile
	 */
	public String getUri_installed() {
		return uri_installed;
	}

	/**
	 * Sets the uri of the installed profile.
	 * 
	 * @param uri_installed
	 *        the new uri of the installed profile
	 */
	public void setUri_installed(String uri_installed) {
		this.uri_installed = uri_installed;
	}

	/**
	 * Gets the uri of the local profile.
	 * 
	 * @return the uri of the local profile
	 */
	public String getUri_local() {
		return uri_local;
	}

	/**
	 * Sets the uri of the local profile.
	 * 
	 * @param uri_local
	 *        the new uri of the local profile
	 */
	public void setUri_local(String uri_local) {
		this.uri_local = uri_local;
	}




}

Back to the top