summaryrefslogtreecommitdiff
path: root/xml/impl/src/com/intellij/ide/browsers/StartBrowserPanel.java
diff options
context:
space:
mode:
Diffstat (limited to 'xml/impl/src/com/intellij/ide/browsers/StartBrowserPanel.java')
-rw-r--r--xml/impl/src/com/intellij/ide/browsers/StartBrowserPanel.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/xml/impl/src/com/intellij/ide/browsers/StartBrowserPanel.java b/xml/impl/src/com/intellij/ide/browsers/StartBrowserPanel.java
index 342a274c0b30..603746bb3c60 100644
--- a/xml/impl/src/com/intellij/ide/browsers/StartBrowserPanel.java
+++ b/xml/impl/src/com/intellij/ide/browsers/StartBrowserPanel.java
@@ -1,3 +1,18 @@
+/*
+ * Copyright 2000-2014 JetBrains s.r.o.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
package com.intellij.ide.browsers;
import com.intellij.ide.DataManager;
@@ -141,6 +156,13 @@ public class StartBrowserPanel {
return browserSettings;
}
+ public void setFromSettings(StartBrowserSettings settings) {
+ setSelected(settings.isSelected());
+ setUrl(settings.getUrl());
+ myStartJavaScriptDebuggerCheckBox.setSelected(settings.isStartJavaScriptDebugger());
+ myBrowserSelector.setSelected(settings.getBrowser());
+ }
+
public static void setupUrlField(@NotNull TextFieldWithBrowseButton field, @NotNull final Project project) {
FileChooserDescriptor descriptor = new FileChooserDescriptor(true, false, false, false, false, false) {
@Override