bugged
stringlengths
6
599k
fixed
stringlengths
6
40.8M
__index_level_0__
int64
0
3.24M
public void startInstruction(int address) { super.startInstruction(address); opcodeFlags[address] |= BytecodeFlags.F_START_OF_INSTRUCTION; if (nextIsStartOfBB || isStartOfBB(address)) { IRBasicBlock pred = this.currentBlock; this.currentBlock = startBB(address); if (nextIsSuccessor) { pred.addSuccessor(thi...
public void startInstruction(int address) { super.startInstruction(address); opcodeFlags[address] |= BytecodeFlags.F_START_OF_INSTRUCTION; if (nextIsStartOfBB || isStartOfBB(address)) { IRBasicBlock pred = this.currentBlock; this.currentBlock = startBB(address); if (nextIsSuccessor) { pred.addSuccessor(thi...
28,638
public void startInstruction(int address) { super.startInstruction(address); opcodeFlags[address] |= BytecodeFlags.F_START_OF_INSTRUCTION; if (nextIsStartOfBB || isStartOfBB(address)) { IRBasicBlock pred = this.currentBlock; this.currentBlock = startBB(address); if (nextIsSuccessor) { pred.addSuccessor(thi...
public void startInstruction(int address) { super.startInstruction(address); opcodeFlags[address] |= BytecodeFlags.F_START_OF_INSTRUCTION; if (nextIsStartOfBB || isStartOfBB(address)) { IRBasicBlock pred = this.currentBlock; this.currentBlock = startBB(address); if (nextIsSuccessor) { pred.addSuccessor(thi...
28,639
public void startInstruction(int address) { super.startInstruction(address); opcodeFlags[address] |= BytecodeFlags.F_START_OF_INSTRUCTION; if (nextIsStartOfBB || isStartOfBB(address)) { IRBasicBlock pred = this.currentBlock; this.currentBlock = startBB(address); if (nextIsSuccessor) { pred.addSuccessor(thi...
public void startInstruction(int address) { super.startInstruction(address); opcodeFlags[address] |= BytecodeFlags.F_START_OF_INSTRUCTION; if (nextIsStartOfBB || isStartOfBB(address)) { IRBasicBlock pred = this.currentBlock; this.currentBlock = startBB(address); if (nextIsSuccessor) { pred.addSuccessor(thi...
28,640
public void visit_areturn() { endBB(false); }
public void visit_areturn() { endBB(false); }
28,642
public void visit_athrow() { endBB(false); }
public void visit_athrow() { endBB(false); }
28,643
public void visit_dreturn() { endBB(false); }
public void visit_dreturn() { endBB(false); }
28,644
public void visit_freturn() { endBB(false); }
public void visit_freturn() { endBB(false); }
28,645
public void visit_goto(int address) { addBranch(address, false); }
public void visit_goto(int address) { addBranch(address, false); }
28,646
public void visit_if_acmpeq(int address) { addBranch(address, true); }
public void visit_if_acmpeq(int address) { addBranch(address, true); }
28,647
public void visit_if_acmpne(int address) { addBranch(address, true); }
public void visit_if_acmpne(int address) { addBranch(address, true); }
28,648
public void visit_if_icmpeq(int address) { addBranch(address, true); }
public void visit_if_icmpeq(int address) { addBranch(address, true); }
28,649
public void visit_if_icmpge(int address) { addBranch(address, true); }
public void visit_if_icmpge(int address) { addBranch(address, true); }
28,650
public void visit_if_icmpgt(int address) { addBranch(address, true); }
public void visit_if_icmpgt(int address) { addBranch(address, true); }
28,651
public void visit_if_icmple(int address) { addBranch(address, true); }
public void visit_if_icmple(int address) { addBranch(address, true); }
28,652
public void visit_if_icmplt(int address) { addBranch(address, true); }
public void visit_if_icmplt(int address) { addBranch(address, true); }
28,653
public void visit_if_icmpne(int address) { addBranch(address, true); }
public void visit_if_icmpne(int address) { addBranch(address, true); }
28,654
public void visit_ifeq(int address) { addBranch(address, true); }
public void visit_ifeq(int address) { addBranch(address, true); }
28,655
public void visit_ifge(int address) { addBranch(address, true); }
public void visit_ifge(int address) { addBranch(address, true); }
28,656
public void visit_ifgt(int address) { addBranch(address, true); }
public void visit_ifgt(int address) { addBranch(address, true); }
28,657
public void visit_ifle(int address) { addBranch(address, true); }
public void visit_ifle(int address) { addBranch(address, true); }
28,658
public void visit_iflt(int address) { addBranch(address, true); }
public void visit_iflt(int address) { addBranch(address, true); }
28,659
public void visit_ifne(int address) { addBranch(address, true); }
public void visit_ifne(int address) { addBranch(address, true); }
28,660
public void visit_ifnonnull(int address) { addBranch(address, true); }
public void visit_ifnonnull(int address) { addBranch(address, true); }
28,661
public void visit_ifnull(int address) { addBranch(address, true); }
public void visit_ifnull(int address) { addBranch(address, true); }
28,662
public void visit_ireturn() { endBB(false); }
public void visit_ireturn() { endBB(false); }
28,663
public void visit_jsr(int address) { // Not sure about this, the next block I believe it NOT a // direct successor. This will have to be tested. addBranch(address, false); }
public void visit_jsr(int address) { // Not sure about this, the next block I believe it NOT a // direct successor. This will have to be tested. addBranch(address, false); }
28,664
public void visit_jsr(int address) { // Not sure about this, the next block I believe it NOT a // direct successor. This will have to be tested. addBranch(address, false); }
public void visit_jsr(int address) { // Not sure about this, the next block I believe it NOT a // direct successor. This will have to be tested. addBranch(address, false); }
28,665
public void visit_lookupswitch(int defValue, int[] matchValues, int[] addresses) { for (int i = 0; i < addresses.length; i++) { // Next block could be successor, e.g. switch could fall through addBranch(addresses[i], true); } // Same for default case addBranch(defValue, true); }
public void visit_lookupswitch(int defValue, int[] matchValues, int[] addresses) { for (int i = 0; i < addresses.length; i++) { // Next block could be successor, e.g. switch could fall through addBranch(addresses[i], true); } // Same for default case addBranch(defValue, true); }
28,666
public void visit_lookupswitch(int defValue, int[] matchValues, int[] addresses) { for (int i = 0; i < addresses.length; i++) { // Next block could be successor, e.g. switch could fall through addBranch(addresses[i], true); } // Same for default case addBranch(defValue, true); }
public void visit_lookupswitch(int defValue, int[] matchValues, int[] addresses) { for (int i = 0; i < addresses.length; i++) { // Next block could be successor, e.g. switch could fall through addBranch(addresses[i], true); } // Same for default case addBranch(defValue, true); }
28,667
public void visit_lreturn() { endBB(false); }
public void visit_lreturn() { endBB(false); }
28,668
public void visit_ret(int index) { // Not sure about this either, this needs testing endBB(false); }
public void visit_ret(int index) { // Not sure about this either, this needs testing endBB(false); }
28,669
public void visit_return() { endBB(false); }
public void visit_return() { endBB(false); }
28,670
public void visit_tableswitch(int defValue, int lowValue, int highValue, int[] addresses) { for (int i = 0; i < addresses.length; i++) { // Next block could be successor, e.g. switch could fall through addBranch(addresses[i], true); } // Same for default case addBranch(defValue, true); }
public void visit_tableswitch(int defValue, int lowValue, int highValue, int[] addresses) { for (int i = 0; i < addresses.length; i++) { // Next block could be successor, e.g. switch could fall through addBranch(addresses[i], true); } // Same for default case addBranch(defValue, true); }
28,671
public void visit_tableswitch(int defValue, int lowValue, int highValue, int[] addresses) { for (int i = 0; i < addresses.length; i++) { // Next block could be successor, e.g. switch could fall through addBranch(addresses[i], true); } // Same for default case addBranch(defValue, true); }
public void visit_tableswitch(int defValue, int lowValue, int highValue, int[] addresses) { for (int i = 0; i < addresses.length; i++) { // Next block could be successor, e.g. switch could fall through addBranch(addresses[i], true); } // Same for default case addBranch(defValue, true); }
28,672
public IRBasicBlock(int address) { this(address, -1, false); }
public IRBasicBlock(int address) { this(address, -1, false); }
28,673
public final boolean equals(Object identity) { if (identity instanceof Identity) { if (identity == this) return true; if ((((Identity) identity).getName() == this.name) && (((Identity) identity).getScope() == this.scope)) return true; return identityEquals((Identity) identity); } return false...
public final boolean equals(Object identity) { if (identity instanceof Identity) { if (identity == this) return true; if ((((Identity) identity).getName() == this.name) && (((Identity) identity).getScope() == this.scope)) return true; return identityEquals((Identity) identity); } return false...
28,674
protected boolean identityEquals(Identity identity) { return ((identity.getName() == this.name) && (identity.getPublicKey() == this.publicKey)); }
protected boolean identityEquals(Identity identity) { return ((identity.getName() == this.name) && (identity.getPublicKey() == this.publicKey)); }
28,675
public CommandShell() throws NameNotFoundException, ShellException { this((TextConsole) ((ConsoleManager) InitialNaming .lookup(ConsoleManager.NAME)).getFocus()); }
public CommandShell() throws NameNotFoundException, ShellException { this((TextConsole) ((ConsoleManager) InitialNaming .lookup(ConsoleManager.NAME)).getFocus()); }
28,676
public void addCommandToHistory(String cmdLineStr) { // Add this command to the history. if (!cmdLineStr.equals(newestLine)) history.addCommand(cmdLineStr); }
public void addCommandToHistory(String cmdLineStr) { // Add this command to the history. if (!cmdLineStr.equals(newestLine)) history.addCommand(cmdLineStr); }
28,677
CompletionInfo complete(String partial) { // workaround to set the currentShell to this shell try { ShellUtils.getShellManager().registerShell(this); } catch (NameNotFoundException ex) { } completion = new CompletionInfo(); String result = null; try { ...
CompletionInfo complete(String partial) { // workaround to set the currentShell to this shell try { ShellUtils.getShellManager().registerShell(this); } catch (NameNotFoundException ex) { } completion = new CompletionInfo(); String result = null; try { ...
28,678
CompletionInfo complete(String partial) { // workaround to set the currentShell to this shell try { ShellUtils.getShellManager().registerShell(this); } catch (NameNotFoundException ex) { } completion = new CompletionInfo(); String result = null; try { ...
CompletionInfo complete(String partial) { // workaround to set the currentShell to this shell try { ShellUtils.getShellManager().registerShell(this); } catch (NameNotFoundException ex) { } completion = new CompletionInfo(); String result = null; try { ...
28,679
CompletionInfo complete(String partial) { // workaround to set the currentShell to this shell try { ShellUtils.getShellManager().registerShell(this); } catch (NameNotFoundException ex) { } completion = new CompletionInfo(); String result = null; try { ...
CompletionInfo complete(String partial) { // workaround to set the currentShell to this shell try { ShellUtils.getShellManager().registerShell(this); } catch (NameNotFoundException ex) { } completion = new CompletionInfo(); String result = null; try { ...
28,680
CompletionInfo complete(String partial) { // workaround to set the currentShell to this shell try { ShellUtils.getShellManager().registerShell(this); } catch (NameNotFoundException ex) { } completion = new CompletionInfo(); String result = null; try { ...
CompletionInfo complete(String partial) { // workaround to set the currentShell to this shell try { ShellUtils.getShellManager().registerShell(this); } catch (NameNotFoundException ex) { } completion = new CompletionInfo(); String result = null; try { ...
28,681
CompletionInfo complete(String partial) { // workaround to set the currentShell to this shell try { ShellUtils.getShellManager().registerShell(this); } catch (NameNotFoundException ex) { } completion = new CompletionInfo(); String result = null; try { ...
CompletionInfo complete(String partial) { // workaround to set the currentShell to this shell try { ShellUtils.getShellManager().registerShell(this); } catch (NameNotFoundException ex) { } completion = new CompletionInfo(); String result = null; try { ...
28,682
public AliasManager getAliasManager() { return aliasMgr; }
public AliasManager getAliasManager() { return aliasMgr; }
28,683
protected CommandInfo getCommandClass(String cmd) throws ClassNotFoundException { try { Class cls = aliasMgr.getAliasClass(cmd); return new CommandInfo(cls, aliasMgr.isInternal(cmd)); } catch (NoSuchAliasException ex) { final ClassLoader cl = Thread.currentThread() ...
protected CommandInfo getCommandClass(String cmd) throws ClassNotFoundException { try { Class cls = aliasMgr.getAliasClass(cmd); return new CommandInfo(cls, aliasMgr.isInternal(cmd)); } catch (NoSuchAliasException ex) { final ClassLoader cl = Thread.currentThread() ...
28,684
public CommandHistory getCommandHistory() { return history; }
public CommandHistory getCommandHistory() { return history; }
28,686
public Console getConsole() { return console; }
public Console getConsole() { return console; }
28,687
public DefaultCommandInvoker getDefaultCommandInvoker() { return defaultCommandInvoker; }
public DefaultCommandInvoker getDefaultCommandInvoker() { return defaultCommandInvoker; }
28,688
public PrintStream getErrorStream() { return err; }
public PrintStream getErrorStream() { return err; }
28,689
public void invokeCommand(String command){ processCommand( command ); }
public void invokeCommand(String command){ processCommand( command ); }
28,690
public void keyPressed(KeyboardEvent ke) { // make sure we are ready to intercept the keyboard if (!isActive) return; switch (ke.getKeyCode()) { // intercept the up and down arrow keys case KeyEvent.VK_UP: ke.consume(); if (historyIndex == -1) { ...
public void keyPressed(KeyboardEvent ke) { // make sure we are ready to intercept the keyboard if (!isActive) return; switch (ke.getKeyCode()) { // intercept the up and down arrow keys case KeyEvent.VK_UP: ke.consume(); if (historyIndex == -1) { ...
28,691
public void keyPressed(KeyboardEvent ke) { // make sure we are ready to intercept the keyboard if (!isActive) return; switch (ke.getKeyCode()) { // intercept the up and down arrow keys case KeyEvent.VK_UP: ke.consume(); if (historyIndex == -1) { ...
public void keyPressed(KeyboardEvent ke) { // make sure we are ready to intercept the keyboard if (!isActive) return; switch (ke.getKeyCode()) { // intercept the up and down arrow keys case KeyEvent.VK_UP: ke.consume(); if (historyIndex == -1) { ...
28,692
public void keyPressed(KeyboardEvent ke) { // make sure we are ready to intercept the keyboard if (!isActive) return; switch (ke.getKeyCode()) { // intercept the up and down arrow keys case KeyEvent.VK_UP: ke.consume(); if (historyIndex == -1) { ...
public void keyPressed(KeyboardEvent ke) { // make sure we are ready to intercept the keyboard if (!isActive) return; switch (ke.getKeyCode()) { // intercept the up and down arrow keys case KeyEvent.VK_UP: ke.consume(); if (historyIndex == -1) { ...
28,693
public void keyPressed(KeyboardEvent ke) { // make sure we are ready to intercept the keyboard if (!isActive) return; switch (ke.getKeyCode()) { // intercept the up and down arrow keys case KeyEvent.VK_UP: ke.consume(); if (historyIndex == -1) { ...
public void keyPressed(KeyboardEvent ke) { // make sure we are ready to intercept the keyboard if (!isActive) return; switch (ke.getKeyCode()) { // intercept the up and down arrow keys case KeyEvent.VK_UP: ke.consume(); if (historyIndex == -1) { ...
28,694
public void keyPressed(KeyboardEvent ke) { // make sure we are ready to intercept the keyboard if (!isActive) return; switch (ke.getKeyCode()) { // intercept the up and down arrow keys case KeyEvent.VK_UP: ke.consume(); if (historyIndex == -1) { ...
public void keyPressed(KeyboardEvent ke) { // make sure we are ready to intercept the keyboard if (!isActive) return; switch (ke.getKeyCode()) { // intercept the up and down arrow keys case KeyEvent.VK_UP: ke.consume(); if (historyIndex == -1) { ...
28,695
public void keyPressed(KeyboardEvent ke) { // make sure we are ready to intercept the keyboard if (!isActive) return; switch (ke.getKeyCode()) { // intercept the up and down arrow keys case KeyEvent.VK_UP: ke.consume(); if (historyIndex == -1) { ...
public void keyPressed(KeyboardEvent ke) { // make sure we are ready to intercept the keyboard if (!isActive) return; switch (ke.getKeyCode()) { // intercept the up and down arrow keys case KeyEvent.VK_UP: ke.consume(); if (historyIndex == -1) { ...
28,696
public void keyPressed(KeyboardEvent ke) { // make sure we are ready to intercept the keyboard if (!isActive) return; switch (ke.getKeyCode()) { // intercept the up and down arrow keys case KeyEvent.VK_UP: ke.consume(); if (historyIndex == -1) { ...
public void keyPressed(KeyboardEvent ke) { // make sure we are ready to intercept the keyboard if (!isActive) return; switch (ke.getKeyCode()) { // intercept the up and down arrow keys case KeyEvent.VK_UP: ke.consume(); if (historyIndex == -1) { ...
28,697
public void keyReleased(KeyboardEvent ke) { // do nothing }
public void keyReleased(KeyboardEvent ke) { // do nothing }
28,699
public void list(String[] items) { completion.setItems(items); }
public void list(String[] items) { completion.setItems(items); }
28,700
protected void processCommand(String cmdLineStr) { commandInvoker.invoke(cmdLineStr); }
protected void processCommand(String cmdLineStr) { commandInvoker.invoke(cmdLineStr); }
28,701
protected String prompt() { String prompt = System.getProperty(PROMPT_PROPERTY_NAME); final StringBuffer result = new StringBuffer(); boolean commandMode = false; try { StringReader reader = new StringReader(prompt); int i; while ((i = reader.read()) != -...
protected String prompt() { String prompt = System.getProperty(PROMPT_PROPERTY_NAME); final StringBuffer result = new StringBuffer(); boolean commandMode = false; try { StringReader reader = new StringReader(prompt); int i; while ((i = reader.read()) != -...
28,702
protected String prompt() { String prompt = System.getProperty(PROMPT_PROPERTY_NAME); final StringBuffer result = new StringBuffer(); boolean commandMode = false; try { StringReader reader = new StringReader(prompt); int i; while ((i = reader.read()) != -...
protected String prompt() { String prompt = System.getProperty(PROMPT_PROPERTY_NAME); final StringBuffer result = new StringBuffer(); boolean commandMode = false; try { StringReader reader = new StringReader(prompt); int i; while ((i = reader.read()) != -...
28,703
private void redisplay() { if (historyIndex == -1) currentLine.setContent(newestLine); else currentLine.setContent(history.getCommand(historyIndex)); refreshCurrentLine(); currentLine.moveEnd(); }
private void redisplay() { if (historyIndex == -1) currentLine.setContent(newestLine); else currentLine.setContent(history.getCommand(historyIndex)); refreshCurrentLine(); currentLine.moveEnd(); }
28,705
private void refreshCurrentLine() { currentLine.refreshCurrentLine(currentPrompt); }
private void refreshCurrentLine() { currentLine.refreshCurrentLine(currentPrompt); }
28,706
public void run() { // Run commands from the JNode commandline first final String cmdLine = (String) AccessController .doPrivileged(new GetPropertyAction("jnode.cmdline", "")); final StringTokenizer tok = new StringTokenizer(cmdLine); while (tok.hasMoreTokens()) { ...
public void run() { // Run commands from the JNode commandline first final String cmdLine = (String) AccessController .doPrivileged(new GetPropertyAction("jnode.cmdline", "")); final StringTokenizer tok = new StringTokenizer(cmdLine); while (tok.hasMoreTokens()) { ...
28,707
public void run() { // Run commands from the JNode commandline first final String cmdLine = (String) AccessController .doPrivileged(new GetPropertyAction("jnode.cmdline", "")); final StringTokenizer tok = new StringTokenizer(cmdLine); while (tok.hasMoreTokens()) { ...
public void run() { // Run commands from the JNode commandline first final String cmdLine = (String) AccessController .doPrivileged(new GetPropertyAction("jnode.cmdline", "")); final StringTokenizer tok = new StringTokenizer(cmdLine); while (tok.hasMoreTokens()) { ...
28,708
public void setDefaultCommandInvoker() { this.commandInvoker = defaultCommandInvoker; }
public void setDefaultCommandInvoker() { this.commandInvoker = defaultCommandInvoker; }
28,710
public void setThreadCommandInvoker() { this.commandInvoker = threadCommandInvoker; }
public void setThreadCommandInvoker() { this.commandInvoker = threadCommandInvoker; }
28,711
public final Class getCommandClass() { return clazz; }
public final Class getCommandClass() { return clazz; }
28,712
public void setCompleted(String completed) { this.items = null; this.completed = completed; }
public void setCompleted(String completed) { this.items = null; this.completed = completed; }
28,713
public CommandInfo(Class clazz, boolean internal) { this.clazz = clazz; this.internal = internal; }
public CommandInfo(Class clazz, boolean internal) { this.clazz = clazz; this.internal = internal; }
28,714
public void start(ScrollableShellConsole console) { consoleX = console.getCursorX(); consoleY = console.getCursorY(); setContent(""); }
public void start(ScrollableShellConsole console) { consoleX = console.getCursorX(); consoleY = console.getCursorY(); setContent(""); }
28,715
public TextHitInfo getStrongCaret (TextHitInfo hit1, TextHitInfo hit2, TextLayout layout) { throw new Error ("not implemented"); }
public TextHitInfo getStrongCaret (TextHitInfo hit1, TextHitInfo hit2, TextLayout layout) { return layout.peer.getStrongCaret(hit1, hit2); }
28,716
public TextLayout (AttributedCharacterIterator text, FontRenderContext frc) { attributedString = new AttributedString (text); fontRenderContext = frc; }
public TextLayout (AttributedCharacterIterator text, FontRenderContext frc) { attributedString = new AttributedString (text); fontRenderContext = frc; }
28,717
protected Object clone () { try { return super.clone (); } catch (CloneNotSupportedException e) { // This should never occur throw new InternalError (); } }
protected Object clone () { try { TextLayout tl = (TextLayout) super.clone (); tl.peer = (ClasspathTextLayoutPeer) this.peer.clone(); return tl; } catch (CloneNotSupportedException e) { // This should never occur throw new InternalError (); } }
28,718
public void draw (Graphics2D g2, float x, float y) { AttributedCharacterIterator ci = attributedString.getIterator (); CharacterIteratorProxy proxy = new CharacterIteratorProxy (ci); Font defFont = g2.getFont (); /* Note: this implementation currently only interprets FONT text * attributes. There is...
public void draw (Graphics2D g2, float x, float y) { AttributedCharacterIterator ci = attributedString.getIterator (); CharacterIteratorProxy proxy = new CharacterIteratorProxy (ci); Font defFont = g2.getFont (); /* Note: this implementation currently only interprets FONT text * attributes. There is...
28,719
public float getAdvance () { throw new Error ("not implemented"); }
public float getAdvance () { return peer.getAdvance(); }
28,720
public float getAscent () { throw new Error ("not implemented"); }
public float getAscent () { return peer.getAscent(); }
28,721
public byte getBaseline () { throw new Error ("not implemented"); }
public byte getBaseline () { return peer.getBaseline(); }
28,722
public float[] getBaselineOffsets () { throw new Error ("not implemented"); }
public float[] getBaselineOffsets () { return peer.getBaselineOffsets(); }
28,723
public Shape getBlackBoxBounds (int firstEndpoint, int secondEndpoint) { throw new Error ("not implemented"); }
public Shape getBlackBoxBounds (int firstEndpoint, int secondEndpoint) { return peer.getBlackBoxBounds(firstEndpoint, secondEndpoint); }
28,724
public Rectangle2D getBounds() { throw new Error ("not implemented"); }
public Rectangle2D getBounds() { return peer.getBounds(); }
28,725
public float[] getCaretInfo (TextHitInfo hit) { throw new Error ("not implemented"); }
public float[] getCaretInfo (TextHitInfo hit) { return getCaretInfo(hit, getBounds()); }
28,726
public Shape getCaretShape (TextHitInfo hit) { throw new Error ("not implemented"); }
public Shape getCaretShape (TextHitInfo hit) { return getCaretShape(hit, getBounds()); }
28,727
public Shape[] getCaretShapes (int offset) { throw new Error ("not implemented"); }
public Shape[] getCaretShapes (int offset) { return getCaretShapes(offset, getBounds()); }
28,728
public int getCharacterCount () { throw new Error ("not implemented"); }
public int getCharacterCount () { return peer.getCharacterCount(); }
28,729
public byte getCharacterLevel (int index) { throw new Error ("not implemented"); }
public byte getCharacterLevel (int index) { return peer.getCharacterLevel(index); }
28,730
public float getDescent () { throw new Error ("not implemented"); }
public float getDescent () { return peer.getDescent(); }
28,731
public TextLayout getJustifiedLayout (float justificationWidth) { throw new Error ("not implemented"); }
public TextLayout getJustifiedLayout (float justificationWidth) { return peer.getJustifiedLayout(justificationWidth); }
28,732
public float getLeading () { throw new Error ("not implemented"); }
public float getLeading () { return peer.getLeading(); }
28,733
public Shape getLogicalHighlightShape (int firstEndpoint, int secondEndpoint) { throw new Error ("not implemented"); }
public Shape getLogicalHighlightShape (int firstEndpoint, int secondEndpoint) { return getLogicalHighlightShape (firstEndpoint, secondEndpoint, getBounds()); }
28,734
public int[] getLogicalRangesForVisualSelection (TextHitInfo firstEndpoint, TextHitInfo secondEndpoint) { throw new Error ("not implemented"); }
public int[] getLogicalRangesForVisualSelection (TextHitInfo firstEndpoint, TextHitInfo secondEndpoint) { return peer.getLogicalRangesForVisualSelection(firstEndpoint, secondEndpoint); }
28,735
public TextHitInfo getNextLeftHit (int offset) { throw new Error ("not implemented"); }
public TextHitInfo getNextLeftHit (int offset) { return getNextLeftHit(offset, DEFAULT_CARET_POLICY); }
28,736
public TextHitInfo getNextRightHit (int offset) { throw new Error ("not implemented"); }
public TextHitInfo getNextRightHit (int offset) { return getNextRightHit(offset, DEFAULT_CARET_POLICY); }
28,737
public Shape getOutline (AffineTransform tx) { throw new Error ("not implemented"); }
public Shape getOutline (AffineTransform tx) { return peer.getOutline(tx); }
28,738
public float getVisibleAdvance () { throw new Error ("not implemented"); }
public float getVisibleAdvance () { return peer.getVisibleAdvance(); }
28,739
public Shape getVisualHighlightShape (TextHitInfo firstEndpoint, TextHitInfo secondEndpoint) { throw new Error ("not implemented"); }
public Shape getVisualHighlightShape (TextHitInfo firstEndpoint, TextHitInfo secondEndpoint) { return getVisualHighlightShape(firstEndpoint, secondEndpoint, getBounds()); }
28,740
public TextHitInfo getVisualOtherHit (TextHitInfo hit) { throw new Error ("not implemented"); }
public TextHitInfo getVisualOtherHit (TextHitInfo hit) { return peer.getVisualOtherHit(hit); }
28,741
protected void handleJustify (float justificationWidth) { throw new Error ("not implemented"); }
protected void handleJustify (float justificationWidth) { peer.handleJustify(justificationWidth); }
28,742