Uses of Interface
gzz.media.Span1D

Packages that use Span1D
gzz.media   
gzz.media.impl   
 

Uses of Span1D in gzz.media
 

Subinterfaces of Span1D in gzz.media
 interface AudioSpan
          A span - contiguous piece of a permascroll - of sound.
 interface PageSpan
          A page span - contiguous piece of a permascroll consisting of pages of the same size - e.g.postscript or pdf file.
 interface TextSpan
          A span - contiguous piece of a permascroll - of text.
 interface VideoSpan
          A span - contiguous piece of a permascroll - of video.
 

Methods in gzz.media that return Span1D
 Span1D Span1D.subSpan(int o1, int o2)
          Return the subSpan starting at o1 in natural units and ending just before o2, analogous to java.lang.String.substring().
 Span1D Span1D.subSpan(int o1)
          Return the subSpan starting at o1 in natural units and ending at the end of this span, analogous to java.lang.String.substring().
 Span1D Span1D.append(Span s)
          Return the span that results from appending the other span to this span, if the resulting span is contiguous.
 

Methods in gzz.media with parameters of type Span1D
 int Span1D.getRelativeStart(Span1D subspan)
          Get the start of the given subspan, relative to the start of this.
 int Span1D.getRelativeEnd(Span1D subspan)
          Get the end of the given subspan, relative to the start of this.
 Enfilade1D Enfilade1D.plus(Span1D other)
          Return an Enfilade1D object whose vstream is a concatenation of this enfilade and the span given.
 Enfilade1D Enfilade1D.prepended(Span1D other)
          Return an Enfilade1D object whose vstream is a concatenation of the given span and this enfilade.
 

Uses of Span1D in gzz.media.impl
 

Classes in gzz.media.impl that implement Span1D
 class FakeTextSpan
          An object that behaves like a text span but is not stored in a real Storm block.
static class ScrollBlockManager.PageSpanBase
          A base class for page spans.
static class ScrollBlockManager.Span1DBase
          A base class for 1-D spans.
 

Methods in gzz.media.impl that return Span1D
 Span1D ScrollBlockManager.Span1DBase.subSpan(int o1, int o2)
           
 Span1D ScrollBlockManager.Span1DBase.subSpan(int o1)
           
 Span1D ScrollBlockManager.Span1DBase.append(Span s)
           
 Span1D ScrollBlockManager.PageSpanBase.append(Span s)
           
 Span1D FakeTextSpan.subSpan(int o1, int o2)
           
 Span1D FakeTextSpan.subSpan(int o1)
           
 Span1D FakeTextSpan.append(Span s)
           
 

Methods in gzz.media.impl with parameters of type Span1D
 int ScrollBlockManager.Span1DBase.getRelativeStart(Span1D subspan)
           
 int ScrollBlockManager.Span1DBase.getRelativeEnd(Span1D subspan)
           
 int FakeTextSpan.getRelativeStart(Span1D subspan)
           
 int FakeTextSpan.getRelativeEnd(Span1D subspan)
           
 Enfilade1D Enfilade1DImpl.plus(Span1D other)
           
 Enfilade1D Enfilade1DImpl.prepended(Span1D other)