X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=service%2Fsimulator%2Fjava%2Feclipse-plugin%2FClientControllerPlugin%2Fsrc%2Foic%2Fsimulator%2Fclientcontroller%2Fperspective%2FPerspectiveFactory.java;h=1e2ff50464088ac07361e9f78505e5da2671a6a3;hb=390866079e285d2c74918432c0d597d5da52f8a0;hp=527e4606e70f58b4852a81728454557cc025923f;hpb=3e9402ad71cb3e93266a77796f44d17bab9853fd;p=platform%2Fupstream%2Fiotivity.git diff --git a/service/simulator/java/eclipse-plugin/ClientControllerPlugin/src/oic/simulator/clientcontroller/perspective/PerspectiveFactory.java b/service/simulator/java/eclipse-plugin/ClientControllerPlugin/src/oic/simulator/clientcontroller/perspective/PerspectiveFactory.java index 527e460..1e2ff50 100644 --- a/service/simulator/java/eclipse-plugin/ClientControllerPlugin/src/oic/simulator/clientcontroller/perspective/PerspectiveFactory.java +++ b/service/simulator/java/eclipse-plugin/ClientControllerPlugin/src/oic/simulator/clientcontroller/perspective/PerspectiveFactory.java @@ -16,15 +16,14 @@ package oic.simulator.clientcontroller.perspective; +import org.eclipse.ui.IPageLayout; +import org.eclipse.ui.IPerspectiveFactory; + import oic.simulator.clientcontroller.view.AttributeView; import oic.simulator.clientcontroller.view.LogView; import oic.simulator.clientcontroller.view.MetaPropertiesView; -import oic.simulator.clientcontroller.view.MultiResourceOrchestrationView; import oic.simulator.clientcontroller.view.ResourceManagerView; -import org.eclipse.ui.IPageLayout; -import org.eclipse.ui.IPerspectiveFactory; - /** * This class creates a new eclipse perspective for client controller and * positions the different views inside. @@ -43,15 +42,13 @@ public class PerspectiveFactory implements IPerspectiveFactory { } private void addViews() { - factory.addView(ResourceManagerView.VIEW_ID, IPageLayout.LEFT, 0.3f, + factory.addView(ResourceManagerView.VIEW_ID, IPageLayout.LEFT, 0.28f, factory.getEditorArea()); - factory.addView(MetaPropertiesView.VIEW_ID, IPageLayout.BOTTOM, 0.65f, - ResourceManagerView.VIEW_ID); factory.addView(AttributeView.VIEW_ID, IPageLayout.LEFT, 0.7f, factory.getEditorArea()); factory.addView(LogView.VIEW_ID, IPageLayout.BOTTOM, 0.65f, AttributeView.VIEW_ID); - factory.addView(MultiResourceOrchestrationView.VIEW_ID, - IPageLayout.RIGHT, 0.6f, AttributeView.VIEW_ID); + factory.addView(MetaPropertiesView.VIEW_ID, IPageLayout.RIGHT, 0.6f, + AttributeView.VIEW_ID); } }