blob: 13b75fc1fb367ae3db6b8beb07f5a4c731245b64 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2017 Exyte
*
* 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:
* Yuri Strot - initial API and Implementation
*******************************************************************************/
package org.eclipse.ui.glance.sources;
/**
* @author Yuri Strot
*
*/
public interface ITextBlock extends Comparable<ITextBlock> {
public String getText();
public void addTextBlockListener(ITextBlockListener listener);
public void removeTextBlockListener(ITextBlockListener listener);
}