475266947b34250d1d654f337599dae91d6344e3
[jalview.git] / src / jalview / datamodel / CigarSimple.java
1 package jalview.datamodel;
2
3 /**
4  * <p>Title: </p>
5  *
6  * <p>Description: </p>
7  *
8  * <p>Copyright: Copyright (c) 2004</p>
9  *
10  * <p>Company: Dundee University</p>
11  *
12  * @author not attributable
13  * @version 1.0
14  */
15 public abstract class CigarSimple
16     extends CigarBase
17 {
18     /**
19      * Return a symbol sequence with edits (gaps, insertions and deletions) applied
20      * @param GapChar char
21      * @return String
22      */
23     public abstract String getSequenceString(char GapChar);
24
25 }