Uses of Class
org.gjt.sp.jedit.syntax.Chunk

Packages that use Chunk
org.gjt.sp.jedit.syntax The jEdit syntax highlighting engine. 
 

Uses of Chunk in org.gjt.sp.jedit.syntax
 

Methods in org.gjt.sp.jedit.syntax that return types with arguments of type Chunk
 java.util.List<Chunk> DisplayTokenHandler.getChunkList()
          Returns the list of chunks.
 

Methods in org.gjt.sp.jedit.syntax with parameters of type Chunk
protected  void DisplayTokenHandler.initChunk(Chunk chunk, javax.swing.text.Segment seg)
           
static float Chunk.offsetToX(Chunk chunks, int offset)
          Converts an offset in a chunk list into an x co-ordinate.
static float Chunk.paintChunkBackgrounds(Chunk chunks, java.awt.Graphics2D gfx, float x, float y)
          Paints the background highlights of a chunk list.
static float Chunk.paintChunkList(Chunk chunks, java.awt.Graphics2D gfx, float x, float y, boolean glyphVector)
          Paints a chunk list.
static int Chunk.xToOffset(Chunk chunks, float x, boolean round)
          Converts an x co-ordinate in a chunk list into an offset.
 

Method parameters in org.gjt.sp.jedit.syntax with type arguments of type Chunk
 void DisplayTokenHandler.init(SyntaxStyle[] styles, java.awt.font.FontRenderContext fontRenderContext, javax.swing.text.TabExpander expander, java.util.List<Chunk> out, float wrapMargin)
          Init some variables that will be used when marking tokens.