/apps/files_trashbin/l10n/

s="cm"> * Create a new characater inline area with the given character. * * @param ch the character for this inline area */ public Character(char ch) { character = ch; } /** * Render this inline area. * * @param renderer the renderer to render this character area */ public void render(Renderer renderer) { renderer.renderCharacter(this); } /** * Get the character for this inline character area. * * @return the character */ public char getChar() { return character; } }