blob: 9dead68346996c0ee6703f91ba63f7530eaefabb [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.team.internal.ui.wizards;
/**
* Stores URL history for importing project sets window.
*
*/
public class PsfUrlStore extends PsfStore {
private static final String URLS = "urls"; //$NON-NLS-1$
private static final String PREVIOUS = "previous_url"; //$NON-NLS-1$
private static PsfUrlStore instance;
public static PsfUrlStore getInstance() {
if (instance == null) {
instance = new PsfUrlStore();
}
return instance;
}
private PsfUrlStore() {
// Singleton
}
@Override
protected String getPreviousTag() {
return PREVIOUS;
}
@Override
protected String getListTag() {
return URLS;
}
@Override
public String getSuggestedDefault() {
return getPrevious();
}
}