blob: 5dae9d0f4f45a756eb8927c5b14d3c3c1763d2d3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 SAP SE 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:
* SAP SE - initial version
*******************************************************************************/
package org.eclipse.urischeme.internal.registration;
import org.eclipse.urischeme.ISchemeInformation;
/**
* The pojo for holding information of a scheme w.r.t. the handling eclipse.
*
*/
public class SchemeInformation implements ISchemeInformation {
private String name;
private String description;
private boolean handled;
private String handlerInstanceLocation;
@SuppressWarnings("javadoc")
public SchemeInformation(String schemeName, String schemeDescription) {
super();
this.name = schemeName;
this.description = schemeDescription;
}
@Override
public String getName() {
return name;
}
@Override
public boolean isHandled() {
return handled;
}
@Override
public String getHandlerInstanceLocation() {
return handlerInstanceLocation;
}
/**
* Sets the handled value to true if scheme is handled by current Eclipse
* installation and false otherwise
*
* @param handled
*/
public void setHandled(boolean handled) {
this.handled = handled;
}
@SuppressWarnings("javadoc")
public void setHandlerLocation(String handlerInstanceLocation) {
this.handlerInstanceLocation = handlerInstanceLocation;
}
@Override
public String getDescription() {
return description;
}
}