bugged
stringlengths
6
599k
fixed
stringlengths
6
40.8M
__index_level_0__
int64
0
3.24M
public void paintComponent(Graphics g) { // probably need to check the isPalette flag here, if true pass over to // paintPalette(Graphics) super.paintComponent(g); Dimension d = getSize(); if (frame.isSelected()) g.setColor(MetalLookAndFeel.getPrimaryControlDarkShadow()); else g.setColor(...
public void paintComponent(Graphics g) { // probably need to check the isPalette flag here, if true pass over to // paintPalette(Graphics) super.paintComponent(g); Dimension d = getSize(); if (frame.isSelected()) g.setColor(MetalLookAndFeel.getPrimaryControlDarkShadow()); else g.setColor(...
11,104
public void paintComponent(Graphics g) { // probably need to check the isPalette flag here, if true pass over to // paintPalette(Graphics) super.paintComponent(g); Dimension d = getSize(); if (frame.isSelected()) g.setColor(MetalLookAndFeel.getPrimaryControlDarkShadow()); else g.setColor(...
public void paintComponent(Graphics g) { // probably need to check the isPalette flag here, if true pass over to // paintPalette(Graphics) super.paintComponent(g); Dimension d = getSize(); if (frame.isSelected()) g.setColor(MetalLookAndFeel.getPrimaryControlDarkShadow()); else g.setColor(...
11,105
public void paintPalette(Graphics g) { // FIXME: needs implementing // most likely this is equivalent to paintComponent(g) when the isPalette // flag is true }
public void paintPalette(Graphics g) {Color savedColor = g.getColor(); Rectangle b = SwingUtilities.getLocalBounds(this); g.setColor(MetalLookAndFeel.getPrimaryControlShadow()); g.fillRect(b.x, b.y, b.width, b.height); MetalUtils.fillMetalPattern(g, b.x + 4, b.y + 2, b.width - paletteCloseIcon.getIconWidth() - 13, b...
11,106
public void setPalette(boolean b) { isPalette = b; }
public void setPalette(boolean b) { isPalette = b; title.setVisible(!isPalette); iconButton.setVisible(!isPalette && frame.isIconifiable()); maxButton.setVisible(!isPalette && frame.isMaximizable()); if (isPalette) closeButton.setIcon(paletteCloseIcon); else closeButton.setIcon(closeIcon); }
11,107
private static boolean loadMacros(Properties macs) { FileInputStream in = null; try { in = new FileInputStream(macroName); macs.load(in); return true; } catch (FileNotFoundException fnfe) {System.out.println(fnfe.getMessage());} catch (IOException ioe) {System.out.pri...
private static boolean loadMacros(Properties macs) { FileInputStream in = null; try { in = new FileInputStream(macroName); macs.load(in); return true; } catch (FileNotFoundException fnfe) {System.out.println(fnfe.getMessage());} catch (IOException ioe) {System.out.pri...
11,109
public Unit addUnit(Unit unit) { if (unit == null) { Log.warn("in Parameter.addUnit(), the Unit passed in is null"); return null; } return getAxisUnits().addUnit(unit); }
public Unit addUnit(Unit unit) { if (unit == null) { Log.warn("in Parameter.addUnit(), the Unit passed in is null"); return null; } return getAxisUnits().addUnit(unit); }
11,120
public ValueGroup addValueGroup (ValueGroup group) { if (group !=null) { //add the group to the groupOwnedHash valueGroupOwnedHash.add(group); return group; } else { Log.warn("in Axis,addValueGroup(). ValueGroup passed in is null"); return null; } }
public ValueGroup addValueGroup (ValueGroup group) { //add the group to the groupOwnedHash valueGroupOwnedHash.add(group); return group; } else { Log.warn("in Axis,addValueGroup(). ValueGroup passed in is null"); return null; } }
11,121
public ValueGroup addValueGroup (ValueGroup group) { if (group !=null) { //add the group to the groupOwnedHash valueGroupOwnedHash.add(group); return group; } else { Log.warn("in Axis,addValueGroup(). ValueGroup passed in is null"); return null; } }
public ValueGroup addValueGroup (ValueGroup group) { if (group !=null) { //add the group to the groupOwnedHash valueGroupOwnedHash.add(group); return group; } else { Log.warn("in Axis,addValueGroup(). ValueGroup passed in is null"); return null; } }
11,122
public Object clone() throws CloneNotSupportedException { Axis cloneObj = (Axis) super.clone(); //deep copy of the valueGroupOwnedHash synchronized (this.valueGroupOwnedHash) { synchronized(cloneObj.valueGroupOwnedHash) { cloneObj.valueGroupOwnedHash = Collections.synchronizedSet(new HashSet(thi...
public Object clone() throws CloneNotSupportedException { Axis cloneObj = (Axis) super.clone(); //deep copy of the valueGroupOwnedHash synchronized (this.valueGroupOwnedHash) { synchronized(cloneObj.valueGroupOwnedHash) { cloneObj.valueGroupOwnedHash = Collections.synchronizedSet(new HashSet(thi...
11,123
public int getIndexFromAxisValue(Value valueObj) { if (valueObj == null) { Log.error("in Axis, getIndexFromAxisValue, Value passed in is null, returning -1"); return -1; } List values = getValueList(); int size = values.size(); for (int i = 0; i< size; i++){ if (((Value...
public int getIndexFromAxisValue(Value valueObj) { if (valueObj == null) { Log.error("in Axis, getIndexFromAxisValue, Value passed in is null, returning -1"); return -1; } List values = getValueList(); int size = values.size(); for (int i = 0; i< size; i++){ if (((Value...
11,124
protected void init() { classXDFNodeName = "axis"; // order matters! these are in *reverse* order of their // occurence in the XDF DTD attribOrder.add(0,"valueList"); attribOrder.add(0,"axisUnits"); attribOrder.add(0,"axisDatatype"); attribOrder.add(0,"align"); //not sure what it is??? attri...
private void init() { classXDFNodeName = "axis"; // order matters! these are in *reverse* order of their // occurence in the XDF DTD attribOrder.add(0,"valueList"); attribOrder.add(0,"axisUnits"); attribOrder.add(0,"axisDatatype"); attribOrder.add(0,"align"); //not sure what it is??? attribO...
11,125
protected void init() { classXDFNodeName = "axis"; // order matters! these are in *reverse* order of their // occurence in the XDF DTD attribOrder.add(0,"valueList"); attribOrder.add(0,"axisUnits"); attribOrder.add(0,"axisDatatype"); attribOrder.add(0,"align"); //not sure what it is??? attri...
protected void init() { classXDFNodeName = "axis"; // order matters! these are in *reverse* order of their // occurence in the XDF DTD attribOrder.add(0,"valueList"); attribOrder.add(0,"axisUnits"); attribOrder.add(0,"axisDatatype"); attribOrder.add(0,"align"); //not sure what it is??? attri...
11,126
public boolean removeValueGroup(ValueGroup group) { if (group == null) { Log.warn("in Axis,removeValueGroup(). ValueGroup passed in is null"); return false; } return valueGroupOwnedHash.remove(group); }
public boolean removeValueGroup(ValueGroup group) { if (group == null) { Log.warn("in Axis,removeValueGroup(). ValueGroup passed in is null"); return false; } return valueGroupOwnedHash.remove(group); }
11,127
public BSHConsole(JTextArea output) { this.out=new BSHOutputAdapter(output); this.output=output; }
public BSHConsole(JTextArea output) { this.out=new BSHOutputAdapter(output); }
11,128
private void checkLayout() { if (offsetsX == null || offsetsY == null || spansX == null || spansY == null) { checkRequirements(); checkTotalRequirements(); int len = container.getComponents().length; offsetsX = new int[len]; offsetsY = new int[len]; spansX = n...
private void checkLayout() { if (offsetsX == null || offsetsY == null || spansX == null || spansY == null) { checkRequirements(); checkTotalRequirements(); int len = container.getComponents().length; offsetsX = new int[len]; offsetsY = new int[len]; spansX = n...
11,129
public void paintBorder(Component c, Graphics g, int x, int y, int width, int height) { Measurements mes = getMeasurements(c); Font oldFont = g.getFont(); Color oldColor = g.getColor(); /** * A local helper class for painting the border without changing * any pixels ins...
public void paintBorder(Component c, Graphics g, int x, int y, int width, int height) { Measurements mes = getMeasurements(c); Font oldFont = g.getFont(); Color oldColor = g.getColor(); /** * A local helper class for painting the border without changing * any pixels ins...
11,131
public float getAlignment(int axis) { float align; if (axis == X_AXIS) align = getComponent().getAlignmentX(); else if (axis == Y_AXIS) align = getComponent().getAlignmentY(); else throw new IllegalArgumentException(); return align; }
public float getAlignment(int axis) { float align = 0.0F; if (interceptor != null && (axis == X_AXIS || axis == Y_AXIS)) { if (axis == X_AXIS) align = getComponent().getAlignmentX(); else if (axis == Y_AXIS) align = getComponent().getAlignmentY(); else throw new IllegalArgumentException(...
11,133
public float getAlignment(int axis) { float align; if (axis == X_AXIS) align = getComponent().getAlignmentX(); else if (axis == Y_AXIS) align = getComponent().getAlignmentY(); else throw new IllegalArgumentException(); return align; }
public float getAlignment(int axis) { float align; if (axis == X_AXIS) align = interceptor.getAlignmentX(); else if (axis == Y_AXIS) align = getComponent().getAlignmentY(); else throw new IllegalArgumentException(); return align; }
11,134
public float getAlignment(int axis) { float align; if (axis == X_AXIS) align = getComponent().getAlignmentX(); else if (axis == Y_AXIS) align = getComponent().getAlignmentY(); else throw new IllegalArgumentException(); return align; }
public float getAlignment(int axis) { float align; if (axis == X_AXIS) align = getComponent().getAlignmentX(); else if (axis == Y_AXIS) align = interceptor.getAlignmentY(); else assert false : "Must not reach here"; } else throw new IllegalArgumentException(); return align; }
11,135
public float getAlignment(int axis) { float align; if (axis == X_AXIS) align = getComponent().getAlignmentX(); else if (axis == Y_AXIS) align = getComponent().getAlignmentY(); else throw new IllegalArgumentException(); return align; }
public float getAlignment(int axis) { float align; if (axis == X_AXIS) align = getComponent().getAlignmentX(); else if (axis == Y_AXIS) align = getComponent().getAlignmentY(); else align = super.getAlignment(axis); return align; }
11,136
public final Component getComponent() { if (comp == null) comp = createComponent(); return comp; }
public final Component getComponent() { if (comp == null) comp = createComponent(); return comp; }
11,137
public float getMaximumSpan(int axis) { float span; if (axis == X_AXIS) span = getComponent().getMaximumSize().width; else if (axis == Y_AXIS) span = getComponent().getMaximumSize().height; else throw new IllegalArgumentException(); return span; }
public float getMaximumSpan(int axis) { if (axis != X_AXIS && axis != Y_AXIS) throw new IllegalArgumentException("Illegal axis"); float span = 0; if (interceptor != null) { if (axis == X_AXIS) span = getComponent().getMaximumSize().width; else if (axis == Y_AXIS) span = getComponent().getMaximumSi...
11,138
public float getMaximumSpan(int axis) { float span; if (axis == X_AXIS) span = getComponent().getMaximumSize().width; else if (axis == Y_AXIS) span = getComponent().getMaximumSize().height; else throw new IllegalArgumentException(); return span; }
public float getMaximumSpan(int axis) { float span; if (axis == X_AXIS) span = interceptor.getMaximumSize().width; else if (axis == Y_AXIS) span = getComponent().getMaximumSize().height; else throw new IllegalArgumentException(); return span; }
11,139
public float getMaximumSpan(int axis) { float span; if (axis == X_AXIS) span = getComponent().getMaximumSize().width; else if (axis == Y_AXIS) span = getComponent().getMaximumSize().height; else throw new IllegalArgumentException(); return span; }
public float getMaximumSpan(int axis) { float span; if (axis == X_AXIS) span = getComponent().getMaximumSize().width; else if (axis == Y_AXIS) span = interceptor.getMaximumSize().height; else throw new IllegalArgumentException(); return span; }
11,140
public float getMaximumSpan(int axis) { float span; if (axis == X_AXIS) span = getComponent().getMaximumSize().width; else if (axis == Y_AXIS) span = getComponent().getMaximumSize().height; else throw new IllegalArgumentException(); return span; }
public float getMaximumSpan(int axis) { float span; if (axis == X_AXIS) span = getComponent().getMaximumSize().width; else if (axis == Y_AXIS) span = getComponent().getMaximumSize().height; else assert false : "Must not reach here"; } return span; }
11,141
public float getMinimumSpan(int axis) { float span; if (axis == X_AXIS) span = getComponent().getMinimumSize().width; else if (axis == Y_AXIS) span = getComponent().getMinimumSize().height; else throw new IllegalArgumentException(); return span; }
public float getMinimumSpan(int axis) { if (axis != X_AXIS && axis != Y_AXIS) throw new IllegalArgumentException("Illegal axis"); float span = 0; if (interceptor != null) { if (axis == X_AXIS) span = getComponent().getMinimumSize().width; else if (axis == Y_AXIS) span = getComponent().getMinim...
11,142
public float getMinimumSpan(int axis) { float span; if (axis == X_AXIS) span = getComponent().getMinimumSize().width; else if (axis == Y_AXIS) span = getComponent().getMinimumSize().height; else throw new IllegalArgumentException(); return span; }
public float getMinimumSpan(int axis) { float span; if (axis == X_AXIS) span = interceptor.getMinimumSize().width; else if (axis == Y_AXIS) span = getComponent().getMinimumSize().height; else throw new IllegalArgumentException(); return span; }
11,143
public float getMinimumSpan(int axis) { float span; if (axis == X_AXIS) span = getComponent().getMinimumSize().width; else if (axis == Y_AXIS) span = getComponent().getMinimumSize().height; else throw new IllegalArgumentException(); return span; }
public float getMinimumSpan(int axis) { float span; if (axis == X_AXIS) span = getComponent().getMinimumSize().width; else if (axis == Y_AXIS) span = interceptor.getMinimumSize().height; else throw new IllegalArgumentException(); return span; }
11,144
public float getMinimumSpan(int axis) { float span; if (axis == X_AXIS) span = getComponent().getMinimumSize().width; else if (axis == Y_AXIS) span = getComponent().getMinimumSize().height; else throw new IllegalArgumentException(); return span; }
public float getMinimumSpan(int axis) { float span; if (axis == X_AXIS) span = getComponent().getMinimumSize().width; else if (axis == Y_AXIS) span = getComponent().getMinimumSize().height; else assert false : "Must not reach here"; } return span; }
11,145
public float getPreferredSpan(int axis) { float span; if (axis == X_AXIS) span = getComponent().getPreferredSize().width; else if (axis == Y_AXIS) span = getComponent().getPreferredSize().height; else throw new IllegalArgumentException(); return span; }
public float getPreferredSpan(int axis) { if (axis != X_AXIS && axis != Y_AXIS) throw new IllegalArgumentException("Illegal axis"); float span = 0; if (interceptor != null) { if (axis == X_AXIS) span = getComponent().getPreferredSize().width; else if (axis == Y_AXIS) span = getComponent().getP...
11,146
public float getPreferredSpan(int axis) { float span; if (axis == X_AXIS) span = getComponent().getPreferredSize().width; else if (axis == Y_AXIS) span = getComponent().getPreferredSize().height; else throw new IllegalArgumentException(); return span; }
public float getPreferredSpan(int axis) { float span; if (axis == X_AXIS) span = interceptor.getPreferredSize().width; else if (axis == Y_AXIS) span = getComponent().getPreferredSize().height; else throw new IllegalArgumentException(); return span; }
11,147
public float getPreferredSpan(int axis) { float span; if (axis == X_AXIS) span = getComponent().getPreferredSize().width; else if (axis == Y_AXIS) span = getComponent().getPreferredSize().height; else throw new IllegalArgumentException(); return span; }
public float getPreferredSpan(int axis) { float span; if (axis == X_AXIS) span = getComponent().getPreferredSize().width; else if (axis == Y_AXIS) span = interceptor.getPreferredSize().height; else throw new IllegalArgumentException(); return span; }
11,148
public float getPreferredSpan(int axis) { float span; if (axis == X_AXIS) span = getComponent().getPreferredSize().width; else if (axis == Y_AXIS) span = getComponent().getPreferredSize().height; else throw new IllegalArgumentException(); return span; }
public float getPreferredSpan(int axis) { float span; if (axis == X_AXIS) span = getComponent().getPreferredSize().width; else if (axis == Y_AXIS) span = getComponent().getPreferredSize().height; else assert false : "Must not reach here"; } return span; }
11,149
public Shape modelToView(int pos, Shape a, Position.Bias b) throws BadLocationException { Element el = getElement(); if (pos < el.getStartOffset() || pos >= el.getEndOffset()) throw new BadLocationException("Illegal offset for this view", pos); Rectangle r = a.getBounds(); Component c = get...
public Shape modelToView(int pos, Shape a, Position.Bias b) throws BadLocationException { Element el = getElement(); if (pos < el.getStartOffset() || pos >= el.getEndOffset()) throw new BadLocationException("Illegal offset for this view", pos); Rectangle r = a.getBounds(); Component c = get...
11,150
public void paint(Graphics g, Shape a) { Rectangle r = a.getBounds(); getComponent().setBounds(r.x, r.y, r.width, r.height); }
public void paint(Graphics g, Shape a) { Rectangle r = a.getBounds(); getComponent().setBounds(r.x, r.y, r.width, r.height); }
11,151
public void setParent(final View p) { if (SwingUtilities.isEventDispatchThread()) setParentImpl(p); else SwingUtilities.invokeLater (new Runnable() { public void run() { setParentImpl(p); } }); }
public void setParent(final View p) { if (SwingUtilities.isEventDispatchThread()) setParentImpl(); else SwingUtilities.invokeLater (new Runnable() { public void run() { setParentImpl(); } }); }
11,152
public void setParent(final View p) { if (SwingUtilities.isEventDispatchThread()) setParentImpl(p); else SwingUtilities.invokeLater (new Runnable() { public void run() { setParentImpl(p); } }); }
public void setParent(final View p) { if (SwingUtilities.isEventDispatchThread()) setParentImpl(); else SwingUtilities.invokeLater (new Runnable() { public void run() { setParentImpl(); } }); }
11,153
public void run() { setParentImpl(p); }
public void run() { setParentImpl(); }
11,154
private void setParentImpl(View p) { super.setParent(p); if (p != null) { Component c = getComponent(); p.getContainer().add(c); } else { Component c = getComponent(); Container parent = c.getParent(); parent.remove(c); comp = null; } }
void setParentImpl() { super.setParent(p); if (p != null) { Component c = getComponent(); p.getContainer().add(c); } else { Component c = getComponent(); Container parent = c.getParent(); parent.remove(c); comp = null; } }
11,155
private void setParentImpl(View p) { super.setParent(p); if (p != null) { Component c = getComponent(); p.getContainer().add(c); } else { Component c = getComponent(); Container parent = c.getParent(); parent.remove(c); comp = null; } }
private void setParentImpl(View p) { View p = getParent(); if (p != null) { Component c = getComponent(); p.getContainer().add(c); } else { Component c = getComponent(); Container parent = c.getParent(); parent.remove(c); comp = null; } }
11,156
private void setParentImpl(View p) { super.setParent(p); if (p != null) { Component c = getComponent(); p.getContainer().add(c); } else { Component c = getComponent(); Container parent = c.getParent(); parent.remove(c); comp = null; } }
private void setParentImpl(View p) { super.setParent(p); if (p != null) { Component c = getComponent(); p.getContainer().add(c); } else { Component c = getComponent(); Container parent = c.getParent(); parent.remove(c); comp = null; } }
11,157
private void setParentImpl(View p) { super.setParent(p); if (p != null) { Component c = getComponent(); p.getContainer().add(c); } else { Component c = getComponent(); Container parent = c.getParent(); parent.remove(c); comp = null; } }
private void setParentImpl(View p) { super.setParent(p); if (p != null) { Component c = getComponent(); p.getContainer().add(c); } else { Component c = getComponent(); Container parent = c.getParent(); parent.remove(c); comp = null; } }
11,158
public int viewToModel(float x, float y, Shape a, Position.Bias[] b) { // The element should only have one character position and it is clear // that this position is the position that best matches the given screen // coordinates, simply because this view has only this one position. Element el = getEleme...
public int viewToModel(float x, float y, Shape a, Position.Bias[] b) { // The element should only have one character position and it is clear // that this position is the position that best matches the given screen // coordinates, simply because this view has only this one position. Element el = getEleme...
11,159
public void run() { try { long before, after, sleep; stop: while (isUp()) { before = System.currentTimeMillis(); synchronized (Tetris.class) { while (pause) { try { System.out.println("waiting"); Tetris.class.wait(); System.out.println("back from waiting"); ...
public void run() { try { long before, after, sleep; stop: while (isUp()) { before = System.currentTimeMillis(); synchronized (Tetris.class) { while (pause) { try { System.out.println("waiting"); Tetris.class.wait(); System.out.println("back from waiting"); ...
11,160
public Tetris() { setOpaque(false); for (int i = 0; i < WIDTH_C + 2; i++) { for (int j = 0; j < HEIGHT_C + 2; j++) { if (i == 0 || j == 0 || i == WIDTH_C + 1 || j == HEIGHT_C + 1) WORLD[i][j] = COLORS.length - 1; else WORLD[i][j] = 0; } } addKeyListener(this); }
public Tetris() { setOpaque(false); for (int i = 0; i < WIDTH_C + 2; i++) { for (int j = 0; j < HEIGHT_C + 2; j++) { if (i == 0 || j == 0 || i == WIDTH_C + 1 || j == HEIGHT_C + 1) WORLD[i][j] = COLORS.length - 1; else WORLD[i][j] = 0; } } addKeyListener(this); }
11,161
private int darken(int i) { int r = i - 64; return r < 0 ? 0 : r; }
private int darken(int i) { int r = i - 64; return r < 0 ? 0 : r; }
11,162
private void fall() { while (hasRoom(bi, x, y + 1)) y++; thread.interrupt(); }
private void fall() { while (hasRoom(bi, x, y + 1)) y++; thread.interrupt(); }
11,163
private void flipPause() { synchronized (Tetris.class) { pause = !pause; if (!pause) Tetris.class.notifyAll(); } }
private void flipPause() { synchronized (Tetris.class) { pause = !pause; if (!pause) Tetris.class.notifyAll(); } }
11,164
public Dimension getMaximumSize() { return DIM; }
public Dimension getMaximumSize() { return DIM; }
11,165
public Dimension getMinimumSize() { return DIM; }
public Dimension getMinimumSize() { return DIM; }
11,166
public Dimension getPreferredSize() { return DIM; }
public Dimension getPreferredSize() { return DIM; }
11,167
private boolean hasRoom(int bi, int x, int y) { boolean hasRoom = true; int[][] b = BLOCKS[si][bi]; for (int i = 0; i < b.length; i++) { if (WORLD[x + b[i][0]][y + b[i][1]] != 0) { hasRoom = false; break; } } return hasRoom; }
private boolean hasRoom(int bi, int x, int y) { boolean hasRoom = true; int[][] b = BLOCKS[si][bi]; for (int i = 0; i < b.length; i++) { if (WORLD[x + b[i][0]][y + b[i][1]] != 0) { hasRoom = false; break; } } return hasRoom; }
11,168
public void keyPressed(KeyEvent e) { int kc = e.getKeyCode(); if (kc == KeyEvent.VK_N) { newGame(); return; } if (kc == KeyEvent.VK_P) { flipPause(); return; } if (!isUp() || pause) return; switch (e.getKeyCode()) { case KeyEvent.VK_UP: rot(1); break; case KeyEvent.VK_LEFT: trans(-1); break;...
public void keyPressed(KeyEvent e) { int kc = e.getKeyCode(); if (kc == KeyEvent.VK_N) { newGame(); return; } if (kc == KeyEvent.VK_P) { flipPause(); return; } if (!isUp() || pause) return; switch (e.getKeyCode()) { case KeyEvent.VK_UP: rot(1); break; case KeyEvent.VK_LEFT: trans(-1); break;...
11,169
public void keyReleased(KeyEvent e) { }
public void keyReleased(KeyEvent e) { }
11,170
public void keyTyped(KeyEvent e) { }
public void keyTyped(KeyEvent e) { }
11,171
private int lighten(int i) { int r = i + 64; return r > 255 ? 255 : r; }
private int lighten(int i) { int r = i + 64; return r > 255 ? 255 : r; }
11,172
public static void main(String[] argv) { int delay = 500; try { if(argv.length > 0) delay = Integer.parseInt(argv[0]); } catch (Exception e) { // ignore } JFrame wnd = new JFrame("JNode Tetris"); Tetris tetris = new Tetris(); tetris.delay = delay; wnd.add(tetris, BorderLayout.CENTER); wnd.setSize(DI...
public static void main(String[] argv) { int delay = 500; try { if(argv.length > 0) delay = Integer.parseInt(argv[0]); } catch (Exception e) { // ignore } JFrame wnd = new JFrame("JNode Tetris"); Tetris tetris = new Tetris(); tetris.delay = delay; wnd.add(tetris, BorderLayout.CENTER); wnd.setSize(DI...
11,173
public static void main(String[] argv) { int delay = 500; try { if(argv.length > 0) delay = Integer.parseInt(argv[0]); } catch (Exception e) { // ignore } JFrame wnd = new JFrame("JNode Tetris"); Tetris tetris = new Tetris(); tetris.delay = delay; wnd.add(tetris, BorderLayout.CENTER); wnd.setSize(DI...
public static void main(String[] argv) { int delay = 500; try { if(argv.length > 0) delay = Integer.parseInt(argv[0]); } catch (Exception e) { // ignore } JFrame wnd = new JFrame("JNode Tetris"); Tetris tetris = new Tetris(); tetris.delay = delay; wnd.add(tetris, BorderLayout.CENTER); wnd.setSize(DI...
11,174
private void newBlock() { int[][] b = BLOCKS[si][bi]; for (int i = 0; i < b.length; i++) { WORLD[x + b[i][0]][y + b[i][1]] = si + 1; } for (int i = 1; i < HEIGHT_C + 1; i++) { boolean full = true; for (int j = 1; j < WIDTH_C + 1; j++) { if (WORLD[j][i] == 0) { full = false; break; } } if (f...
private void newBlock() { int[][] b = BLOCKS[si][bi]; for (int i = 0; i < b.length; i++) { WORLD[x + b[i][0]][y + b[i][1]] = si + 1; } for (int i = 1; i < HEIGHT_C + 1; i++) { boolean full = true; for (int j = 1; j < WIDTH_C + 1; j++) { if (WORLD[j][i] == 0) { full = false; break; } } if (f...
11,175
public void newGame() { setUp(false); if (thread != null) { if (pause) { flipPause(); } try { thread.join(); } catch (InterruptedException ignore) { } } for (int i = 0; i < WIDTH_C + 2; i++) { for (int j = 0; j < HEIGHT_C + 2; j++) { if (i == 0 || j == 0 || i == WIDTH_C + 1 || j ==...
public void newGame() { setUp(false); if (thread != null) { if (pause) { flipPause(); } try { thread.join(); } catch (InterruptedException ignore) { } } for (int i = 0; i < WIDTH_C + 2; i++) { for (int j = 0; j < HEIGHT_C + 2; j++) { if (i == 0 || j == 0 || i == WIDTH_C + 1 || j ==...
11,176
public void newGame() { setUp(false); if (thread != null) { if (pause) { flipPause(); } try { thread.join(); } catch (InterruptedException ignore) { } } for (int i = 0; i < WIDTH_C + 2; i++) { for (int j = 0; j < HEIGHT_C + 2; j++) { if (i == 0 || j == 0 || i == WIDTH_C + 1 || j ==...
public void newGame() { setUp(false); if (thread != null) { if (pause) { flipPause(); } try { thread.join(); } catch (InterruptedException ignore) { } } for (int i = 0; i < WIDTH_C + 2; i++) { for (int j = 0; j < HEIGHT_C + 2; j++) { if (i == 0 || j == 0 || i == WIDTH_C + 1 || j ==...
11,177
public void newGame() { setUp(false); if (thread != null) { if (pause) { flipPause(); } try { thread.join(); } catch (InterruptedException ignore) { } } for (int i = 0; i < WIDTH_C + 2; i++) { for (int j = 0; j < HEIGHT_C + 2; j++) { if (i == 0 || j == 0 || i == WIDTH_C + 1 || j ==...
public void newGame() { setUp(false); if (thread != null) { if (pause) { flipPause(); } try { thread.join(); } catch (InterruptedException ignore) { } } for (int i = 0; i < WIDTH_C + 2; i++) { for (int j = 0; j < HEIGHT_C + 2; j++) { if (i == 0 || j == 0 || i == WIDTH_C + 1 || j ==...
11,178
public void paint(Graphics g) { if (img == null) { img = createImage(DIM.width, DIM.height); } Graphics g2 = img.getGraphics(); g2.setColor(COLORS[0]); g2.fillRect(0, 0, DIM.width, DIM.height); for (int i = 0; i < WIDTH_C + 2; i++) { for (int j = 0; j < HEIGHT_C + 2; j++) { int ci = WORLD[i][j]; if (ci...
public void paint(Graphics g) { if (img == null) { img = createImage(DIM.width, DIM.height); } Graphics g2 = img.getGraphics(); g2.setColor(COLORS[0]); g2.fillRect(0, 0, DIM.width, DIM.height); for (int i = 0; i < WIDTH_C + 2; i++) { for (int j = 0; j < HEIGHT_C + 2; j++) { int ci = WORLD[i][j]; if (ci...
11,179
public void paintBox(Graphics g, int i, int j, Color c) { Color dc = new Color(darken(c.getRed()), darken(c.getGreen()), darken(c .getBlue())); Color lc = new Color(lighten(c.getRed()), lighten(c.getGreen()), lighten(c.getBlue())); g.setColor(c); g.fillRect(i * CELL, j * CELL, CELL - 1, CELL - 1); g.setColo...
public void paintBox(Graphics g, int i, int j, Color c) { Color dc = new Color(darken(c.getRed()), darken(c.getGreen()), darken(c .getBlue())); Color lc = new Color(lighten(c.getRed()), lighten(c.getGreen()), lighten(c.getBlue())); g.setColor(c); g.fillRect(i * CELL, j * CELL, CELL - 1, CELL - 1); g.setColo...
11,180
private void rot(int i) { int t = (bi + i) % 4; if (hasRoom(t, x, y)) { bi = t; } }
private void rot(int i) { int t = (bi + i) % 4; if (hasRoom(t, x, y)) { bi = t; } }
11,181
private void trans(int i) { int t = x + i; if (hasRoom(bi, t, y)) { x = t; } }
private void trans(int i) { int t = x + i; if (hasRoom(bi, t, y)) { x = t; } }
11,182
public void update(Graphics g) { paint(g); }
public void update(Graphics g) { paint(g); }
11,183
protected void paintFocus(Graphics g, AbstractButton b, Rectangle viewRect, Rectangle textRect, Rectangle iconRect) { if (b.hasFocus() && b.isFocusPainted()) { Color savedColor = g.getColor(); g.setColor(getFocusColor()); Rectangle focusRect = iconRect.union(textRect); g.drawRect(fo...
protected void paintFocus(Graphics g, AbstractButton b, Rectangle viewRect, Rectangle textRect, Rectangle iconRect) { if (b.isEnabled() && b.hasFocus() && b.isFocusPainted()) { Color savedColor = g.getColor(); g.setColor(getFocusColor()); Rectangle focusRect = iconRect.union(textRect); ...
11,184
public Device getDevice(ParsedArguments args) throws SyntaxError { String value = getValue(args); try { return ((DeviceManager)InitialNaming.lookup(DeviceManager.NAME)).getDevice(value); } catch(NameNotFoundException ex) { throw new SyntaxError("DeviceManager not found. Check your system setup"); } catch(Devic...
public Device getDevice(ParsedArguments args) throws SyntaxError { String value = getValue(args); try { return ((DeviceManager)InitialNaming.lookup(DeviceManager.NAME)).getDevice(value); } catch(NameNotFoundException ex) { throw new SyntaxError("DeviceManager not found. Check your system setup"); } catch(Devic...
11,185
public Device getDevice(ParsedArguments args) throws SyntaxError { String value = getValue(args); try { return ((DeviceManager)InitialNaming.lookup(DeviceManager.NAME)).getDevice(value); } catch(NameNotFoundException ex) { throw new SyntaxError("DeviceManager not found. Check your system setup"); } catch(Devic...
public Device getDevice(ParsedArguments args) throws SyntaxError { String value = getValue(args); try { return ((DeviceManager)InitialNaming.lookup(DeviceManager.NAME)).getDevice(value); } catch(NameNotFoundException ex) { throw new SyntaxError("DeviceManager not found. Check your system setup"); } catch(Devic...
11,186
public Device getDevice(ParsedArguments args) throws SyntaxError { String value = getValue(args); try { return ((DeviceManager)InitialNaming.lookup(DeviceManager.NAME)).getDevice(value); } catch(NameNotFoundException ex) { throw new SyntaxError("DeviceManager not found. Check your system setup"); } catch(Devic...
public Device getDevice(ParsedArguments args) throws SyntaxError { String value = getValue(args); try { return ((DeviceManager)InitialNaming.lookup(DeviceManager.NAME)).getDevice(value); } catch(NameNotFoundException ex) { throw new SyntaxError("DeviceManager not found. Check your system setup"); } catch(Devic...
11,187
public void addColumn(TableColumn column) { if (column.getHeaderValue() == null) { String name = dataModel.getColumnName(column.getModelIndex()); column.setHeaderValue(name); } columnModel.addColumn(column); }
public void addColumn(TableColumn column) { if (column.getHeaderValue() == null) { String name = dataModel.getColumnName(column.getModelIndex()); column.setHeaderValue(name); } columnModel.addColumn(column); }
11,188
private void distributeSpill(TableColumn[] cols, int spill) { int average = spill / cols.length; for (int i = 0; i < cols.length; i++) { cols[i].setWidth(cols[i].getWidth() + average); } }
private void distributeSpill(TableColumn[] cols, int spill) { int average = spill / cols.length; for (int i = 0; i < cols.length; i++) { cols[i].setWidth(cols[i].getWidth() + average); } }
11,191
public TableCellEditor getDefaultEditor(Class columnClass) { if (defaultEditorsByColumnClass.containsKey(columnClass)) return (TableCellEditor) defaultEditorsByColumnClass.get(columnClass); else { // FIXME: We have at least an editor for Object.class in our defaults. TableCellEditor r = new Defaul...
public TableCellEditor getDefaultEditor(Class columnClass) { if (defaultEditorsByColumnClass.containsKey(columnClass)) return (TableCellEditor) defaultEditorsByColumnClass.get(columnClass); else { // FIXME: We have at least an editor for Object.class in our defaults. TableCellEditor r = new Defaul...
11,192
public TableCellRenderer getDefaultRenderer(Class columnClass) { if (defaultRenderersByColumnClass.containsKey(columnClass)) return (TableCellRenderer) defaultRenderersByColumnClass.get(columnClass); else { TableCellRenderer r = new DefaultTableCellRenderer(); defaultRenderersByColumnClass....
public TableCellRenderer getDefaultRenderer(Class columnClass) { if (defaultRenderersByColumnClass.containsKey(columnClass)) return (TableCellRenderer) defaultRenderersByColumnClass.get(columnClass); else { TableCellRenderer r = new DefaultTableCellRenderer(); defaultRenderersByColumnClass....
11,193
public int getScrollableUnitIncrement(Rectangle visibleRect, int orientation, int direction) { // FIXME: I don't exactly know what sun does here. in both cases they // pick values which do *not* simply expose the next cell in a given // scroll direction. if (orientation == SwingConstants.VERTICAL) r...
public int getScrollableUnitIncrement(Rectangle visibleRect, int orientation, int direction) { // FIXME: I don't exactly know what sun does here. in both cases they // pick values which do *not* simply expose the next cell in a given // scroll direction. if (orientation == SwingConstants.VERTICAL) r...
11,194
protected void initializeLocalVars() { setTableHeader(createDefaultTableHeader()); this.autoCreateColumnsFromModel = false; if (columnModel == null) { this.autoCreateColumnsFromModel = true; createColumnsFromModel(); } this.columnModel.addColumnModelListener(this); this.def...
protected void initializeLocalVars() { setTableHeader(createDefaultTableHeader()); this.autoCreateColumnsFromModel = false; if (columnModel == null) { this.autoCreateColumnsFromModel = true; createColumnsFromModel(); } this.columnModel.addColumnModelListener(this); this.def...
11,195
public void setAutoCreateColumnsFromModel(boolean autoCreate) { if (autoCreateColumnsFromModel != autoCreate) { autoCreateColumnsFromModel = autoCreate; if (autoCreate) createDefaultColumnsFromModel(); } }
public void setAutoCreateColumnsFromModel(boolean autoCreate) { if (autoCreateColumnsFromModel != autoCreate) { autoCreateColumnsFromModel = autoCreate; if (autoCreate) createDefaultColumnsFromModel(); } }
11,196
public void setModel(TableModel m) { // Throw exception is m is null. if (m == null) throw new IllegalArgumentException(); // Don't do anything if setting the current model again. if (dataModel == m) return; // Remove table as TableModelListener from old model. if (dataModel != nul...
public void setModel(TableModel m) { // Throw exception is m is null. if (m == null) throw new IllegalArgumentException(); // Don't do anything if setting the current model again. if (dataModel == m) return; // Remove table as TableModelListener from old model. if (dataModel != nul...
11,197
public void setModel(TableModel m) { // Throw exception is m is null. if (m == null) throw new IllegalArgumentException(); // Don't do anything if setting the current model again. if (dataModel == m) return; // Remove table as TableModelListener from old model. if (dataModel != nul...
public void setModel(TableModel m) { // Throw exception is m is null. if (m == null) throw new IllegalArgumentException(); // Don't do anything if setting the current model again. if (dataModel == m) return; // Remove table as TableModelListener from old model. if (dataModel != nul...
11,198
public void setModel(TableModel m) { // Throw exception is m is null. if (m == null) throw new IllegalArgumentException(); // Don't do anything if setting the current model again. if (dataModel == m) return; // Remove table as TableModelListener from old model. if (dataModel != nul...
public void setModel(TableModel m) { // Throw exception is m is null. if (m == null) throw new IllegalArgumentException(); // Don't do anything if setting the current model again. if (dataModel == m) return; // Remove table as TableModelListener from old model. if (dataModel != nul...
11,199
public void tableChanged (TableModelEvent event) { // update the column model from the table model if the structure has // changed and the flag autoCreateColumnsFromModel is set if ((event.getFirstRow() ==TableModelEvent.HEADER_ROW) && autoCreateColumnsFromModel) createColumnsFromModel(); r...
public void tableChanged (TableModelEvent event) { // update the column model from the table model if the structure has // changed and the flag autoCreateColumnsFromModel is set if ((event.getFirstRow() ==TableModelEvent.HEADER_ROW) && autoCreateColumnsFromModel) createDefaultColumnsFromModel(...
11,200
public Object clone() { try { Calendar cal = (Calendar) super.clone(); cal.fields = (int[]) fields.clone(); cal.isSet = (boolean[])isSet.clone(); return cal; } catch (CloneNotSupportedException ex) { return null; } }
public Object clone() { try { Calendar cal = (Calendar) super.clone(); cal.fields = (int[]) fields.clone(); cal.isSet = (boolean[])isSet.clone(); return cal; } catch (CloneNotSupportedException ex) { return null; } }
11,201
private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException { stream.defaultReadObject(); if (!isTimeSet) computeTime(); if (serialVersionOnStream > 1) { // This is my interpretation of the serial number: // Sun wants to remove all fields from the stream someday /...
private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException { stream.defaultReadObject(); if (!isTimeSet) computeTime(); if (serialVersionOnStream > 1) { // This is my interpretation of the serial number: // Sun wants to remove all fields from the stream someday /...
11,202
private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException { stream.defaultReadObject(); if (!isTimeSet) computeTime(); if (serialVersionOnStream > 1) { // This is my interpretation of the serial number: // Sun wants to remove all fields from the stream someday /...
privatevoidreadObject(ObjectInputStreamstream)throwsIOException,ClassNotFoundException{ stream.defaultReadObject(); if(!isTimeSet) computeTime();if(serialVersionOnStream>1){ //Thisismyinterpretationoftheserialnumber: //Sunwantstoremoveallfieldsfromthestreamsomeday //andwillthenincreasetheserialVersionnumbera...
11,203
private void writeObject(ObjectOutputStream stream) throws IOException { if (!isTimeSet) computeTime(); stream.defaultWriteObject(); }
private void writeObject(ObjectOutputStream stream) throws IOException { if (!isTimeSet) computeTime(); stream.defaultWriteObject(); }
11,204
private void setNewKeyStrokes(KeyEvent ke) { if (!macros && !special) { if (isLinux) mapper.setKeyStroke(mnemonicData[functions.getSelectedIndex()],ke,isAltGr); else mapper.setKeyStroke(mnemonicData[functions.getSelectedIndex()],ke); strokeDesc.setText(mapper.getKey...
private void setNewKeyStrokes(KeyEvent ke) { if (!macros && !special) { mapper.removeKeyStroke(k); if (isLinux) { mapper.setKeyStroke(mnemonicData[functions.getSelectedIndex()],ke,isAltGr); else mapper.setKeyStroke(mnemonicData[functions.getSelectedIndex()],ke); str...
11,205
private void setNewKeyStrokes(KeyEvent ke) { if (!macros && !special) { if (isLinux) mapper.setKeyStroke(mnemonicData[functions.getSelectedIndex()],ke,isAltGr); else mapper.setKeyStroke(mnemonicData[functions.getSelectedIndex()],ke); strokeDesc.setText(mapper.getKey...
private void setNewKeyStrokes(KeyEvent ke) { if (!macros && !special) { if (isLinux) mapper.setKeyStroke(mnemonicData[functions.getSelectedIndex()],ke,isAltGr); } else { mapper.setKeyStroke(mnemonicData[functions.getSelectedIndex()],ke); strokeDesc.setText(mapper.ge...
11,206
private void setNewKeyStrokes(KeyEvent ke) { if (!macros && !special) { if (isLinux) mapper.setKeyStroke(mnemonicData[functions.getSelectedIndex()],ke,isAltGr); else mapper.setKeyStroke(mnemonicData[functions.getSelectedIndex()],ke); strokeDesc.setText(mapper.getKey...
} } } private} void} setNewKeyStrokes(KeyEvent} ke)} {} } } } } } if} (!macros} &&} !special)} {} } } } } } } } } if} (isLinux)} } } } } } } } } } } } mapper.setKeyStroke(mnemonicData[functions.getSelectedIndex()],ke,isAltGr);} } } } } } } } } else} } } } } } } } } } } } mapper.setKeyStroke(mnemonicData[functions.getSe...
11,207
Object thisObject();
Object thisObject();
11,208
protected void initComponentDefaults(UIDefaults defaults) { Object[] uiDefaults; Color highLight = new Color(249, 247, 246); Color light = new Color(239, 235, 231); Color shadow = new Color(139, 136, 134); Color darkShadow = new Color(16, 16, 16); uiDefaults = new Object[] { "AbstractUndoa...
protected void initComponentDefaults(UIDefaults defaults) { Object[] uiDefaults; Color highLight = new Color(249, 247, 246); Color light = new Color(239, 235, 231); Color shadow = new Color(139, 136, 134); Color darkShadow = new Color(16, 16, 16); uiDefaults = new Object[] { "AbstractUndoa...
11,209
protected void initComponentDefaults(UIDefaults defaults) { Object[] uiDefaults; Color highLight = new Color(249, 247, 246); Color light = new Color(239, 235, 231); Color shadow = new Color(139, 136, 134); Color darkShadow = new Color(16, 16, 16); uiDefaults = new Object[] { "AbstractUndoa...
protected void initComponentDefaults(UIDefaults defaults) { Object[] uiDefaults; Color highLight = new Color(249, 247, 246); Color light = new Color(239, 235, 231); Color shadow = new Color(139, 136, 134); Color darkShadow = new Color(16, 16, 16); uiDefaults = new Object[] { "AbstractUndoa...
11,210
protected void initComponentDefaults(UIDefaults defaults) { Object[] uiDefaults; Color highLight = new Color(249, 247, 246); Color light = new Color(239, 235, 231); Color shadow = new Color(139, 136, 134); Color darkShadow = new Color(16, 16, 16); uiDefaults = new Object[] { "AbstractUndoa...
protected void initComponentDefaults(UIDefaults defaults) { Object[] uiDefaults; Color highLight = new Color(249, 247, 246); Color light = new Color(239, 235, 231); Color shadow = new Color(139, 136, 134); Color darkShadow = new Color(16, 16, 16); uiDefaults = new Object[] { "AbstractUndoa...
11,211
protected void initComponentDefaults(UIDefaults defaults) { Object[] uiDefaults; Color highLight = new Color(249, 247, 246); Color light = new Color(239, 235, 231); Color shadow = new Color(139, 136, 134); Color darkShadow = new Color(16, 16, 16); uiDefaults = new Object[] { "AbstractUndoa...
protected void initComponentDefaults(UIDefaults defaults) { Object[] uiDefaults; Color highLight = new Color(249, 247, 246); Color light = new Color(239, 235, 231); Color shadow = new Color(139, 136, 134); Color darkShadow = new Color(16, 16, 16); uiDefaults = new Object[] { "AbstractUndoa...
11,212
protected void initComponentDefaults(UIDefaults defaults) { Object[] uiDefaults; Color highLight = new Color(249, 247, 246); Color light = new Color(239, 235, 231); Color shadow = new Color(139, 136, 134); Color darkShadow = new Color(16, 16, 16); uiDefaults = new Object[] { "AbstractUndoa...
protected void initComponentDefaults(UIDefaults defaults) { Object[] uiDefaults; Color highLight = new Color(249, 247, 246); Color light = new Color(239, 235, 231); Color shadow = new Color(139, 136, 134); Color darkShadow = new Color(16, 16, 16); uiDefaults = new Object[] { "AbstractUndoa...
11,213
protected void initComponentDefaults(UIDefaults defaults) { Object[] uiDefaults; Color highLight = new Color(249, 247, 246); Color light = new Color(239, 235, 231); Color shadow = new Color(139, 136, 134); Color darkShadow = new Color(16, 16, 16); uiDefaults = new Object[] { "AbstractUndoa...
protected void initComponentDefaults(UIDefaults defaults) { Object[] uiDefaults; Color highLight = new Color(249, 247, 246); Color light = new Color(239, 235, 231); Color shadow = new Color(139, 136, 134); Color darkShadow = new Color(16, 16, 16); uiDefaults = new Object[] { "AbstractUndoa...
11,214
protected void initComponentDefaults(UIDefaults defaults) { Object[] uiDefaults; Color highLight = new Color(249, 247, 246); Color light = new Color(239, 235, 231); Color shadow = new Color(139, 136, 134); Color darkShadow = new Color(16, 16, 16); uiDefaults = new Object[] { "AbstractUndoa...
protected void initComponentDefaults(UIDefaults defaults) { Object[] uiDefaults; Color highLight = new Color(249, 247, 246); Color light = new Color(239, 235, 231); Color shadow = new Color(139, 136, 134); Color darkShadow = new Color(16, 16, 16); uiDefaults = new Object[] { "AbstractUndoa...
11,215
protected void initComponentDefaults(UIDefaults defaults) { Object[] uiDefaults; Color highLight = new Color(249, 247, 246); Color light = new Color(239, 235, 231); Color shadow = new Color(139, 136, 134); Color darkShadow = new Color(16, 16, 16); uiDefaults = new Object[] { "AbstractUndoa...
protected void initComponentDefaults(UIDefaults defaults) { Object[] uiDefaults; Color highLight = new Color(249, 247, 246); Color light = new Color(239, 235, 231); Color shadow = new Color(139, 136, 134); Color darkShadow = new Color(16, 16, 16); uiDefaults = new Object[] { "AbstractUndoa...
11,216
protected void initComponentDefaults(UIDefaults defaults) { Object[] uiDefaults; Color highLight = new Color(249, 247, 246); Color light = new Color(239, 235, 231); Color shadow = new Color(139, 136, 134); Color darkShadow = new Color(16, 16, 16); uiDefaults = new Object[] { "AbstractUndoa...
protected void initComponentDefaults(UIDefaults defaults) { Object[] uiDefaults; Color highLight = new Color(249, 247, 246); Color light = new Color(239, 235, 231); Color shadow = new Color(139, 136, 134); Color darkShadow = new Color(16, 16, 16); uiDefaults = new Object[] { "AbstractUndoa...
11,217
protected void initComponentDefaults(UIDefaults defaults) { Object[] uiDefaults; Color highLight = new Color(249, 247, 246); Color light = new Color(239, 235, 231); Color shadow = new Color(139, 136, 134); Color darkShadow = new Color(16, 16, 16); uiDefaults = new Object[] { "AbstractUndoa...
protected void initComponentDefaults(UIDefaults defaults) { Object[] uiDefaults; Color highLight = new Color(249, 247, 246); Color light = new Color(239, 235, 231); Color shadow = new Color(139, 136, 134); Color darkShadow = new Color(16, 16, 16); uiDefaults = new Object[] { "AbstractUndoa...
11,218