Interface TrackLayout
-
- All Known Implementing Classes:
SimpleTrackLayout,UserDefinedTrackLayout
public interface TrackLayout
An interface for the handling of the layout of a WrappedSequencePanel.- Since:
- 1.5
- Author:
- Mark Southern
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RangeLocation[]getRanges()intgetWrap()intgetWrapIncrement()voidsetRange(RangeLocation loc)voidsetSequence(Sequence seq)voidsetWrap(int wrap)voidsetWrapIncrement(int inc)
-
-
-
Method Detail
-
setSequence
void setSequence(Sequence seq)
-
setRange
void setRange(RangeLocation loc)
-
getRanges
RangeLocation[] getRanges()
-
setWrap
void setWrap(int wrap)
-
getWrap
int getWrap()
-
setWrapIncrement
void setWrapIncrement(int inc)
-
getWrapIncrement
int getWrapIncrement()
-
-