Lines Matching refs:GlyphVector

29 import java.awt.font.GlyphVector;
2420 GlyphVector gv = new StandardGlyphVector(this, chars, beginIndex,
2510 * Creates a {@link java.awt.font.GlyphVector GlyphVector} by
2519 * @return a new <code>GlyphVector</code> created with the
2523 public GlyphVector createGlyphVector(FontRenderContext frc, String str)
2525 return (GlyphVector)new StandardGlyphVector(this, str, frc);
2529 * Creates a {@link java.awt.font.GlyphVector GlyphVector} by
2538 * @return a new <code>GlyphVector</code> created with the
2542 public GlyphVector createGlyphVector(FontRenderContext frc, char[] chars)
2544 return (GlyphVector)new StandardGlyphVector(this, chars, frc);
2548 * Creates a {@link java.awt.font.GlyphVector GlyphVector} by
2557 * @return a new <code>GlyphVector</code> created with the
2561 public GlyphVector createGlyphVector( FontRenderContext frc,
2564 return (GlyphVector)new StandardGlyphVector(this, ci, frc);
2568 * Creates a {@link java.awt.font.GlyphVector GlyphVector} by
2577 * @return a new <code>GlyphVector</code> created with the
2581 public GlyphVector createGlyphVector( FontRenderContext frc,
2584 return (GlyphVector)new StandardGlyphVector(this, glyphCodes, frc);
2588 * Returns a new <code>GlyphVector</code> object, performing full
2614 * @param start the start of the text to use for the <code>GlyphVector</code>
2615 * @param limit the limit of the text to use for the <code>GlyphVector</code>
2617 * @return a new <code>GlyphVector</code> representing the text between
2629 public GlyphVector layoutGlyphVector(FontRenderContext frc,