View Javadoc

1   /*
2    * This file is a part of CAST project.
3    * (c) Copyright 2007, AGH University of Science & Technology
4    * https://caribou.iisg.agh.edu.pl/trac/cast
5    *
6    * Licensed under the Eclipse Public License, Version 1.0 (the "License").
7    * You may not use this file except in compliance with the License.
8    * You may obtain a copy of the License at
9    * http://www.eclipse.org/legal/epl-v10.html
10   */
11  /*
12   * File: ITreeEntry.java
13   * Created: 2009-09-17
14   * Author: kpietak
15   * $Id$
16   */
17  
18  package pl.edu.agh.cast.importer.wizard.template;
19  
20  /**
21   * Interface for tree viewer entries.
22   * 
23   * @author AGH CAST Team
24   */
25  public interface ITreeEntry {
26  
27  	/**
28  	 * Gets text for an entry.
29  	 * 
30  	 * @return entry label
31  	 */
32  	String getText();
33  
34  }