Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 281d2341668d89ea2ebb2b055a0e96809985d0f7 (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
/**
 *  Copyright (c) 2013 Soft-Maint.
 *  
 *  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:
 * 		David Couvrand (Soft-Maint) - Bug 402725 - Need a query to get an image from an URI
 *  	Nicolas Rault (Soft-Maint) - Bug 402725 - Need a query to get an image from an URI
 */
package org.eclipse.emf.facet.custom.ui.internal.custompt;

import java.io.InputStream;

import org.eclipse.emf.facet.custom.metamodel.custompt.IImage;

public class URIImage implements IImage {
	
	private static final long serialVersionUID = 6801140731857137834L;
	private String uri;
	
	public URIImage(final String uri) {
		this.uri = uri;
	}

	public InputStream getInputStream() {
		return null;
	}

	public String getUri() {
		return this.uri;
	}

	public void setUri(final String uri) {
		this.uri = uri;
	}

}

Back to the top