Skip to main content
summaryrefslogtreecommitdiffstats
blob: 1c6e90dc256122c08615369e1108cd838b64d42b (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/*
 * Copyright (c) 2004-2013 Eike Stepper (Berlin, Germany) and others.
 * 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:
 *    Eike Stepper - initial API and implementation
 */
package org.eclipse.emf.cdo.releng.setup.ide;

/**
 * @author Eike Stepper
 */
@Deprecated
public final class Prefs
{
  // private static final SetupContext CONTEXT = Activator.getDefault();
  //
  // private static final org.osgi.service.prefs.Preferences ROOT = Platform.getPreferencesService().getRootNode();
  //
  // public static void initEarly() throws Exception
  // {
  // Setup setup = CONTEXT.getSetup();
  // Branch branch = setup.getBranch();
  // Project project = branch.getProject();
  //
  // final String name = project.getName() + ("master".equals(branch.getName()) ? "" : " " + branch.getName());
  // PlatformUI.getWorkbench().getWorkbenchWindows()[0].getShell().getDisplay().syncExec(new Runnable()
  // {
  // public void run()
  // {
  // set("instance/org.eclipse.ui.ide/WORKSPACE_NAME", name);
  // }
  // });
  //
  // set("instance/org.eclipse.ui.workbench/RUN_IN_BACKGROUND", "true");
  // }
  //
  // public static void initLate() throws Exception
  // {
  // Setup setup = CONTEXT.getSetup();
  // Branch branch = setup.getBranch();
  // Project project = branch.getProject();
  //
  // Preferences preferences = setup.getPreferences();
  // init(project);
  // init(branch);
  // init(preferences);
  // }
  //
  // private static void init(ToolInstallation preferenceHolder)
  // {
  // for (ToolPreference toolPreference : preferenceHolder.getToolPreferences())
  // {
  // init(toolPreference);
  // }
  // }
  //
  // private static void init(ToolPreference toolPreference)
  // {
  // String key = toolPreference.getKey();
  // if (key.startsWith("/"))
  // {
  // key = key.substring(1);
  // }
  //
  // String value = toolPreference.getValue();
  // set(key, value);
  // }
  //
  // public static void set(String key, String value)
  // {
  // org.osgi.service.prefs.Preferences node = ROOT;
  //
  // String[] segments = key.split("/");
  // for (int i = 0; i < segments.length - 1; i++)
  // {
  // String segment = segments[i];
  // node = node.node(segment);
  // }
  //
  // Progress.log().addLine("Setting preference " + key + " = " + value);
  // node.put(segments[segments.length - 1], value);
  // }
}

Back to the top