blob: 9bb696584627f333a03a3cb57a799fd3c9cfc4ea [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 Laurent CARON.
* 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:
* Laurent CARON (laurent.caron@gmail.com) - initial API and implementation
*******************************************************************************/
package org.mihalis.opal.multiChoice;
/**
* Default MultiChoiceLabelProvider that uses the toString() method to determine
* the content of a given element.
*/
public class MultiChoiceDefaultLabelProvider implements MultiChoiceLabelProvider {
/**
* Gets the text.
*
* @param element the element
* @return the text
* @see org.mihalis.opal.multiChoice.MultiChoiceLabelProvider#getText(java.lang.Object)
*/
@Override
public String getText(final Object element) {
return element == null ? "" : element.toString();
}
}