Java SDK and Eclipse plugin for simulator.
[platform/upstream/iotivity.git] / service / simulator / java / eclipse-plugin / ClientControllerPlugin / src / oic / simulator / clientcontroller / view / dialogs / FindResourceWizard.java
1 /*
2  * Copyright 2015 Samsung Electronics All Rights Reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package oic.simulator.clientcontroller.view.dialogs;
18
19 import java.net.URL;
20 import java.util.Set;
21
22 import oic.simulator.clientcontroller.Activator;
23
24 import org.eclipse.core.runtime.FileLocator;
25 import org.eclipse.core.runtime.IPath;
26 import org.eclipse.core.runtime.Path;
27 import org.eclipse.jface.resource.ImageDescriptor;
28 import org.eclipse.jface.wizard.Wizard;
29
30 /**
31  * This class creates a UI wizard for find resource operation.
32  */
33 public class FindResourceWizard extends Wizard {
34     private FindResourcePage page;
35
36     public FindResourceWizard() {
37         setWindowTitle("Find resources");
38         IPath path = new Path("/icons/oic_logo_64x64.png");
39         URL find = FileLocator.find(Activator.getDefault().getBundle(), path,
40                 null);
41         setDefaultPageImageDescriptor(ImageDescriptor.createFromURL(find));
42     }
43
44     public Set<String> getSearchTypes() {
45         return page.getSearchTypes();
46     }
47
48     @Override
49     public void addPages() {
50         page = new FindResourcePage();
51         addPage(page);
52     }
53
54     @Override
55     public boolean performFinish() {
56         return true;
57     }
58 }