blob: 8c5829a262c63642c16a7e20fbff4b9009b9960f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 Remain Software
* 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:
* wim.jongman@remainsoftware.com - initial API and implementation
*******************************************************************************/
package org.eclipse.tips.core;
import java.net.MalformedURLException;
import org.eclipse.tips.json.JsonTipProvider;
public class JsonTestProvider extends JsonTipProvider {
public JsonTestProvider() throws MalformedURLException {
setJsonUrl("https://raw.githubusercontent.com/wimjongman/jsontips/master/photon/m3tips.json");
}
@Override
public String getID() {
return getClass().getName();
}
}