]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.browsing.ui.common/src/org/simantics/browsing/ui/common/imagers/SingleImageURLs.java
1bbfad79f1c6ad416a4dd11e20c2f5d44c99dda6
[simantics/platform.git] / bundles / org.simantics.browsing.ui.common / src / org / simantics / browsing / ui / common / imagers / SingleImageURLs.java
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
3  * in Industry THTH ry.\r
4  * All rights reserved. This program and the accompanying materials\r
5  * are made available under the terms of the Eclipse Public License v1.0\r
6  * which accompanies this distribution, and is available at\r
7  * http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  * Contributors:\r
10  *     VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.browsing.ui.common.imagers;\r
13 \r
14 import java.net.URL;\r
15 \r
16 public class SingleImageURLs implements ImageURLs {\r
17 \r
18         private final String columnKey;\r
19         private final URL url;\r
20         \r
21         public SingleImageURLs(String columnKey, URL url) {\r
22                 if(url == null) throw new IllegalArgumentException("Null url.");\r
23                 this.url = url;\r
24                 if(columnKey == null) throw new IllegalArgumentException("Null columnKey.");\r
25                 this.columnKey = columnKey;\r
26         }\r
27 \r
28         @Override\r
29         public URL getURL(String columnKey) {\r
30                 if(this.columnKey.equals(columnKey)) return url;\r
31                 else return null;\r
32         }\r
33         \r
34 }\r