/******************************************************************************* * Copyright (c) 2009, 2015 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.ua.tests.help.webextension; import org.eclipse.core.runtime.Platform; import org.eclipse.help.webapp.AbstractFrame; import org.eclipse.ua.tests.plugin.UserAssistanceTestPlugin; public class TestFrame extends AbstractFrame { @Override public String getName() { return "testFrame"; } @Override public String getURL() { return "/titlesearch/jsp/advanced/testFrame.jsp"; } @Override public int getLocation() { return AbstractFrame.BELOW_CONTENT; } @Override public String getSize() { return "24"; } @Override public boolean isVisible() { return Platform.getPreferencesService().getBoolean (UserAssistanceTestPlugin.getPluginId(), "extraFrame", false, null); } }