Skip to main content
summaryrefslogtreecommitdiffstats
blob: 5a2622049f4861bb8c705f361d7915471d13d34a (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
/*******************************************************************************
 * Copyright (c) 2001, 2004 IBM Corporation 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:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/

package org.eclipse.wst.ws.internal.explorer.platform.favorites.constants;

public class FavoritesFrameNames
{
  public final static String NAVIGATOR_CONTAINER = "fav_navigator_container";
  public final static String NAVIGATOR_TOOLBAR = "fav_navigator_toolbar";
  public final static String NAVIGATOR_CONTENT = "fav_navigator_content";
  public final static String ACTIONS_CONTAINER = "fav_actions_container";
  public final static String PROPERTIES_CONTAINER = "fav_properties_container";
  public final static String PROPERTIES_TOOLBAR = "fav_properties_toolbar";
  public final static String PROPERTIES_CONTENT = "fav_properties_content";
  public final static String STATUS_CONTAINER = "fav_status_container";
  public final static String STATUS_TOOLBAR = "fav_status_toolbar";
  public final static String STATUS_CONTENT = "fav_status_content";
}

Back to the top