bugged stringlengths 6 599k | fixed stringlengths 6 40.8M | __index_level_0__ int64 0 3.24M |
|---|---|---|
public LongHolder(long initial_value) { value = initial_value; } | public LongHolder(long initial_value) { } | 4,308 |
public StringHolder(String initial_value) { value = initial_value; } | public StringHolder() { value = initial_value; } | 4,309 |
public StringHolder(String initial_value) { value = initial_value; } | public StringHolder(String initial_value) { } | 4,310 |
public int hashCode() { long l = Double.doubleToLongBits(m00); l = l * 31 + Double.doubleToLongBits(m10); l = l * 31 + Double.doubleToLongBits(m01); l = l * 31 + Double.doubleToLongBits(m11); l = l * 31 + Double.doubleToLongBits(m02); l = l * 31 + Double.doubleToLongBits(m12); return (int) ((l >> 32) ^ l); } | public int hashCode() { long l = Double.doubleToLongBits(m00); l = l * 31 + Double.doubleToLongBits(m10); l = l * 31 + Double.doubleToLongBits(m01); l = l * 31 + Double.doubleToLongBits(m11); l = l * 31 + Double.doubleToLongBits(m02); l = l * 31 + Double.doubleToLongBits(m12); return (int) ((l >> 32) ^ l); } | 4,311 |
public int hashCode() { long l = Double.doubleToLongBits(m00); l = l * 31 + Double.doubleToLongBits(m10); l = l * 31 + Double.doubleToLongBits(m01); l = l * 31 + Double.doubleToLongBits(m11); l = l * 31 + Double.doubleToLongBits(m02); l = l * 31 + Double.doubleToLongBits(m12); return (int) ((l >> 32) ^ l); } | public int hashCode() { long l = Double.doubleToLongBits(m00); l = l * 31 + Double.doubleToLongBits(m10); l = l * 31 + Double.doubleToLongBits(m01); l = l * 31 + Double.doubleToLongBits(m11); l = l * 31 + Double.doubleToLongBits(m02); l = l * 31 + Double.doubleToLongBits(m12); return (int) ((l >> 32) ^ l); } | 4,312 |
private void checkLayout() { if (offsetsX == null || offsetsY == null || spansX == null || spansY == null) { checkRequirements(); checkTotalRequirements(); int len = target.getComponents().length; offsetsX = new int[len]; offsetsY = new int[len]; spansX = new ... | private void checkLayout() { if (offsetsX == null || offsetsY == null || spansX == null || spansY == null) { checkRequirements(); checkTotalRequirements(); int len = target.getComponents().length; offsetsX = new int[len]; offsetsY = new int[len]; spansX = new ... | 4,314 |
private void checkLayout() { if (offsetsX == null || offsetsY == null || spansX == null || spansY == null) { checkRequirements(); checkTotalRequirements(); int len = target.getComponents().length; offsetsX = new int[len]; offsetsY = new int[len]; spansX = new ... | private void checkLayout() { if (offsetsX == null || offsetsY == null || spansX == null || spansY == null) { checkRequirements(); checkTotalRequirements(); int len = target.getComponents().length; offsetsX = new int[len]; offsetsY = new int[len]; spansX = new ... | 4,315 |
public IndexColorModel(int bits, int size, byte[] reds, byte[] greens, byte[] blues, int trans) { this (bits, size, reds, greens, blues, (byte[]) null); this.trans = trans; } | public IndexColorModel(int bits, int size, byte[] reds, byte[] greens, byte[] blues) { this (bits, size, reds, greens, blues, (byte[]) null); this.trans = trans; } | 4,316 |
public IndexColorModel(int bits, int size, byte[] reds, byte[] greens, byte[] blues, int trans) { this (bits, size, reds, greens, blues, (byte[]) null); this.trans = trans; } | public IndexColorModel(int bits, int size, byte[] reds, byte[] greens, byte[] blues, int trans) { this (bits, size, reds, greens, blues, (byte[]) null); this.trans = trans; } | 4,317 |
public static InvalidName extract(Any a) { try { return ((InvalidNameHolder) a.extract_Streamable()).value; } catch (ClassCastException ex) { throw new BAD_OPERATION(); } } | public static InvalidName extract(Any a) { try { return ((InvalidNameHolder) a.extract_Streamable()).value; } catch (ClassCastException ex) { BAD_OPERATION bad = new BAD_OPERATION(); bad.initCause(ex); bad.minor = Minor.Any; throw bad; } } | 4,318 |
private void parseFile() throws IOException, BadLocationException { Token t1 = scanner.readToken(); if (t1.type != Token.LCURLY) throw new RTFParseException("expected left curly braces"); parseHeader(); parseDocument(); Token t2 = scanner.readToken(); if (t2.type != Token.RCURLY) thr... | private void parseFile() throws IOException, BadLocationException { Token t1 = scanner.readToken(); if (t1.type != Token.LCURLY) throw new RTFParseException("expected left curly braces"); parseHeader(); parseDocument(); Token t2 = scanner.readToken(); if (t2.type != Token.RCURLY) thr... | 4,319 |
public MetalToggleButtonUI() { super(); focusColor = getFocusColor(); selectColor = getSelectColor(); disabledTextColor = getDisabledTextColor(); } | public MetalToggleButtonUI() { super(); focusColor = getFocusColor(); selectColor = getSelectColor(); disabledTextColor = getDisabledTextColor(); } | 4,320 |
public static ComponentUI createUI(JComponent component) { if (instance == null) instance = new MetalToggleButtonUI(); return instance; } | public static ComponentUI createUI(JComponent component) { if (instance == null) instance = new MetalToggleButtonUI(); return instance; } | 4,321 |
protected Color getDisabledTextColor() { UIDefaults def = UIManager.getLookAndFeelDefaults(); return def.getColor(getPropertyPrefix() + ".disabledText"); } | protected Color getDisabledTextColor() { UIDefaults def = UIManager.getLookAndFeelDefaults(); return def.getColor(getPropertyPrefix() + ".disabledText"); } | 4,322 |
protected Color getFocusColor() { UIDefaults def = UIManager.getLookAndFeelDefaults(); return def.getColor(getPropertyPrefix() + ".focus"); } | protected Color getFocusColor() { UIDefaults def = UIManager.getLookAndFeelDefaults(); return def.getColor(getPropertyPrefix() + ".focus"); } | 4,323 |
protected Color getSelectColor() { UIDefaults def = UIManager.getLookAndFeelDefaults(); return def.getColor(getPropertyPrefix() + ".select"); } | protected Color getSelectColor() { UIDefaults def = UIManager.getLookAndFeelDefaults(); return def.getColor(getPropertyPrefix() + ".select"); } | 4,324 |
private void addValue(String name, String value) { Header key = new Header(name); String old = (String) super.get(key); if (old == null) { super.put(key, value); } else { super.put(key, old + ", " + value); } } | public void addValue(String name, String value) { Header key = new Header(name); String old = (String) super.get(key); if (old == null) { super.put(key, value); } else { super.put(key, old + ", " + value); } } | 4,326 |
private void addValue(String name, String value) { Header key = new Header(name); String old = (String) super.get(key); if (old == null) { super.put(key, value); } else { super.put(key, old + ", " + value); } } | private void addValue(String name, String value) { Header key = new Header(name); String old = (String) super.get(key); if (old == null) { super.put(key, value); } else { super.put(key, old + ", " + value); } } | 4,327 |
public String getValue(String header) { return (String) super.get(new Header(header)); } | public String getValue(String header) { for (int i = headers.size() - 1; i >= 0; i--) { HeaderElement e = (HeaderElement)headers.get(i); if (e.name.equalsIgnoreCase(header)) { return e.value; } } return null; } | 4,330 |
public Object put(Object key, Object value) { return super.put(new Header((String) key), value); } | public void put(String name, String value) { return super.put(new Header((String) key), value); } | 4,331 |
public Object put(Object key, Object value) { return super.put(new Header((String) key), value); } | public Object put(Object key, Object value) { for (int i = headers.size() - 1; i >= 0; i--) { HeaderElement e = (HeaderElement)headers.get(i); if (e.name.equalsIgnoreCase(name)) { e.value = value; return; } } | 4,332 |
public void putAll(Map t) { for (Iterator i = t.keySet().iterator(); i.hasNext(); ) { String key = (String) i.next(); String value = (String) t.get(key); put(key, value); } } | public void putAll(Headers o) { for (Iterator i = t.keySet().iterator(); i.hasNext(); ) { String key = (String) i.next(); String value = (String) t.get(key); put(key, value); } } | 4,334 |
public void putAll(Map t) { for (Iterator i = t.keySet().iterator(); i.hasNext(); ) { String key = (String) i.next(); String value = (String) t.get(key); put(key, value); } } | public void putAll(Map t) { for (Iterator it = o.iterator(); it.hasNext(); ) { String key = (String) i.next(); String value = (String) t.get(key); put(key, value); } } | 4,335 |
public void putAll(Map t) { for (Iterator i = t.keySet().iterator(); i.hasNext(); ) { String key = (String) i.next(); String value = (String) t.get(key); put(key, value); } } | public void putAll(Map t) { for (Iterator i = t.keySet().iterator(); i.hasNext(); ) { String key = (String) i.next(); String value = (String) t.get(key); put(key, value); } } | 4,336 |
public Object remove(Object key) { return super.remove(new Header((String) key)); } | public void remove(String name) { return super.remove(new Header((String) key)); } | 4,337 |
public Object remove(Object key) { return super.remove(new Header((String) key)); } | public Object remove(Object key) { for (Iterator it = headers.iterator(); it.hasNext(); ) { HeaderElement e = (HeaderElement)it.next(); if (e.name.equalsIgnoreCase(name)) it.remove(); } } | 4,338 |
private boolean canAddAxisObjToArray(AxisInterface axisToAdd) { if (axisToAdd.getAxisId() == null) { Log.error("Can't add Axis Object without axisId attribute defined"); return false; } return true; } | private boolean canAddAxisObjToArray(AxisInterface axisToAdd) { if (axisToAdd.getAxisId() == null) { Log.warnln("Warning: Can't add Axis Object without axisId attribute defined"); return false; } return true; } | 4,340 |
public CacheEvent(Object source, int type) { super(source); this.eventType = type; } | public CacheEvent(Object source, int type) { super(source); this.eventType = type; } | 4,341 |
public CacheEvent(Object source, int type) { super(source); this.eventType = type; } | public CacheEvent(Object source, int type) { super(source); this.eventType = type; } | 4,342 |
protected LayoutManager createLayoutManager() { return new TabbedPaneLayout(); } | protected LayoutManager createLayoutManager() { return (tabPane.getTabLayoutPolicy() == JTabbedPane.WRAP_TAB_LAYOUT) ? new MetalTabbedPaneUI.TabbedPaneLayout() : super.createLayoutManager(); } | 4,343 |
protected void paintBottomTabBorder(int tabIndex, Graphics g, int x, int y, int w, int h, int btm, int rght, boolean isSelected) { int bottom = h - 1; int right = w - 1; int tabCount = tabPane.getTabCount(); int currentRun = getRunForTab(tabCount, tabIndex); // Paint gap if necessary. if (shou... | protected void paintBottomTabBorder(int tabIndex, Graphics g, int x, int y, int w, int h, int btm, int rght, boolean isSelected) { int bottom = h - 1; int right = w - 1; int tabCount = tabPane.getTabCount(); int currentRun = getRunForTab(tabCount, tabIndex); // Paint gap if necessary. if (shou... | 4,344 |
protected void paintContentBorderLeftEdge(Graphics g, int tabPlacement, int selectedIndex, int x, int y, int w, int h) { boolean isOcean = MetalLookAndFeel.getCurrentTheme() instanceof OceanTheme; Color oceanSelectedBorder = ... | protected void paintContentBorderLeftEdge(Graphics g, int tabPlacement, int selectedIndex, int x, int y, int w, int h) { boolean isOcean = MetalLookAndFeel.getCurrentTheme() instanceof OceanTheme; Color oceanSelectedBorder = ... | 4,345 |
protected void paintLeftTabBorder(int tabIndex, Graphics g, int x, int y, int w, int h, int btm, int rght, boolean isSelected) { g.translate(x, y); int bottom = h - 1; int right = w - 1; int tabCount = tabPane.getTabCount(); int currentRun = getRunForTab(tabCount, tabIndex); int firstIndex... | protectedvoidpaintLeftTabBorder(inttabIndex,Graphicsg,intx,inty,intw,inth,intbtm,intrght,booleanisSelected){g.translate(x,y);intbottom=h-1;intright=w-1;inttabCount=tabPane.getTabCount();intcurrentRun=getRunForTab(tabCount,tabIndex);intfirstIndex=tabRuns[currentRun];//Paintthepartoftheabovetab.if(tabIndex!=firstIndex&&t... | 4,346 |
protected void paintLeftTabBorder(int tabIndex, Graphics g, int x, int y, int w, int h, int btm, int rght, boolean isSelected) { g.translate(x, y); int bottom = h - 1; int right = w - 1; int tabCount = tabPane.getTabCount(); int currentRun = getRunForTab(tabCount, tabIndex); int firstIndex... | protected void paintLeftTabBorder(int tabIndex, Graphics g, int x, int y, int w, int h, int btm, int rght, boolean isSelected) { g.translate(x, y); int bottom = h - 1; int right = w - 1; int tabCount = tabPane.getTabCount(); int currentRun = getRunForTab(tabCount, tabIndex); int firstIndex... | 4,347 |
protected void paintLeftTabBorder(int tabIndex, Graphics g, int x, int y, int w, int h, int btm, int rght, boolean isSelected) { g.translate(x, y); int bottom = h - 1; int right = w - 1; int tabCount = tabPane.getTabCount(); int currentRun = getRunForTab(tabCount, tabIndex); int firstIndex... | protected void paintLeftTabBorder(int tabIndex, Graphics g, int x, int y, int w, int h, int btm, int rght, boolean isSelected) { g.translate(x, y); int bottom = h - 1; int right = w - 1; int tabCount = tabPane.getTabCount(); int currentRun = getRunForTab(tabCount, tabIndex); int firstIndex... | 4,348 |
protected void paintRightTabBorder(int tabIndex, Graphics g, int x, int y, int w, int h, int btm, int rght, boolean isSelected) { g.translate(x, y); int bottom = h - 1; int right = w - 1; int tabCount = tabPane.getTabCount(); int currentRun = getRunForTab(tabCount, tabIndex); int firstIndex = ... | protected void paintRightTabBorder(int tabIndex, Graphics g, int x, int y, int w, int h, int btm, int rght, boolean isSelected) { g.translate(x, y); int bottom = h - 1; int right = w - 1; int tabCount = tabPane.getTabCount(); int currentRun = getRunForTab(tabCount, tabIndex); int firstIndex = ... | 4,349 |
protected void paintRightTabBorder(int tabIndex, Graphics g, int x, int y, int w, int h, int btm, int rght, boolean isSelected) { g.translate(x, y); int bottom = h - 1; int right = w - 1; int tabCount = tabPane.getTabCount(); int currentRun = getRunForTab(tabCount, tabIndex); int firstIndex = ... | protected void paintRightTabBorder(int tabIndex, Graphics g, int x, int y, int w, int h, int btm, int rght, boolean isSelected) { g.translate(x, y); int bottom = h - 1; int right = w - 1; int tabCount = tabPane.getTabCount(); int currentRun = getRunForTab(tabCount, tabIndex); int firstIndex = ... | 4,350 |
public FFDTableModel() { super(); } | public FFDTableModel() { super(); } | 4,351 |
public FFDTableModel() { super(); } | public FFDTableModel() { super(); } | 4,352 |
public Class getColumnClass(int col) { return getValueAt(0,col).getClass(); } | public Class getColumnClass(int col) { return getValueAt(0, col).getClass(); } | 4,353 |
public Class getColumnClass(int col) { return getValueAt(0,col).getClass(); } | public Class getColumnClass(int col) { return getValueAt(0,col).getClass(); } | 4,354 |
public int getColumnCount() { return cols.length; } | public int getColumnCount() { return cols.length; } | 4,355 |
public String getColumnName(int col) { return cols[col]; } | public String getColumnName(int col) { return cols[col]; } | 4,356 |
public int getRowCount() { return ftpProtocol.getNumberOfFields(); } | public int getRowCount() { return ftpProtocol.getNumberOfFields(); } | 4,357 |
public Object getValueAt(int row, int col) { if (col == 0) { return new Boolean(ftpProtocol.isFieldSelected(row)); } if (col == 1) return ftpProtocol.getFieldName(row); return null; } | public Object getValueAt(int row, int col) { if (col == 0) { return new Boolean(ftpProtocol.isFieldSelected(row)); } if (col == 1) return ftpProtocol.getFieldName(row); return null; } | 4,358 |
public Object getValueAt(int row, int col) { if (col == 0) { return new Boolean(ftpProtocol.isFieldSelected(row)); } if (col == 1) return ftpProtocol.getFieldName(row); return null; } | public Object getValueAt(int row, int col) { if (col == 0) { return new Boolean(ftpProtocol.isFieldSelected(row)); } if (col == 1) return ftpProtocol.getFieldName(row); return null; } | 4,359 |
public Object getValueAt(int row, int col) { if (col == 0) { return new Boolean(ftpProtocol.isFieldSelected(row)); } if (col == 1) return ftpProtocol.getFieldName(row); return null; } | public Object getValueAt(int row, int col) { if (col == 0) { return new Boolean(ftpProtocol.isFieldSelected(row)); } if (col == 1) return ftpProtocol.getFieldName(row); return null; } | 4,360 |
public Object getValueAt(int row, int col) { if (col == 0) { return new Boolean(ftpProtocol.isFieldSelected(row)); } if (col == 1) return ftpProtocol.getFieldName(row); return null; } | public Object getValueAt(int row, int col) { if (col == 0) { return new Boolean(ftpProtocol.isFieldSelected(row)); } if (col == 1) return ftpProtocol.getFieldName(row); return null; } | 4,361 |
public Object getValueAt(int row, int col) { if (col == 0) { return new Boolean(ftpProtocol.isFieldSelected(row)); } if (col == 1) return ftpProtocol.getFieldName(row); return null; } | public Object getValueAt(int row, int col) { if (col == 0) { return new Boolean(ftpProtocol.isFieldSelected(row)); } if (col == 1) return ftpProtocol.getFieldName(row); return null; } | 4,362 |
public boolean isCellEditable(int row,int col) { if (col == 0) return true; else return false; } | public boolean isCellEditable(int row,int col) { if (col == 0) return true; else return false; } | 4,363 |
public boolean isCellEditable(int row,int col) { if (col == 0) return true; else return false; } | public boolean isCellEditable(int row,int col) { if (col == 0) return true; else return false; } | 4,364 |
public void setValueAt(Object value, int row, int col) { fireTableCellUpdated(row,col); ftpProtocol.setFieldSelected(row,((Boolean)value).booleanValue()); } | public void setValueAt(Object value, int row, int col) { fireTableCellUpdated(row,col); ftpProtocol.setFieldSelected(row,((Boolean)value).booleanValue()); } | 4,365 |
public void setValueAt(Object value, int row, int col) { fireTableCellUpdated(row,col); ftpProtocol.setFieldSelected(row,((Boolean)value).booleanValue()); } | public void setValueAt(Object value, int row, int col) { fireTableCellUpdated(row,col); ftpProtocol.setFieldSelected(row,((Boolean)value).booleanValue()); } | 4,366 |
ProgressOptionPane(Object messageList) { super(messageList, JOptionPane.INFORMATION_MESSAGE, JOptionPane.DEFAULT_OPTION, null, new Object[] {UIManager.getString("OptionPane.cancelButtonText")}, null); setCursor(Cursor.getPredefi... | ProgressOptionPane(Object messageList) { super(messageList, JOptionPane.INFORMATION_MESSAGE, JOptionPane.DEFAULT_OPTION, null, new Object[] {UIManager.getString("OptionPane.cancelButtonText")}, null); setCursor(Cursor.getPredefi... | 4,367 |
ProgressOptionPane(Object messageList) { super(messageList, JOptionPane.INFORMATION_MESSAGE, JOptionPane.DEFAULT_OPTION, null, new Object[] {UIManager.getString("OptionPane.cancelButtonText")}, null); setCursor(Cursor.getPredefi... | ProgressOptionPane(Object messageList) { super(messageList, JOptionPane.INFORMATION_MESSAGE, JOptionPane.DEFAULT_OPTION, null, new Object[] {UIManager.getString("OptionPane.cancelButtonText")}, null); setCursor(Cursor.getPredefi... | 4,368 |
public JDialog createDialog(Component parentComponent, String title) { Frame frame = JOptionPane.getFrameForComponent(parentComponent); final JDialog dialog = new JDialog(frame, title, false); Container contentPane = dialog.getContentPane(); contentPane.setLayout(new BorderLayout()... | public JDialog createDialog(Component parentComponent, String title) { Frame frame = JOptionPane.getFrameForComponent(parentComponent); final JDialog dialog = new JDialog(frame, title, false); Container contentPane = dialog.getContentPane(); contentPane.setLayout(new BorderLayout()... | 4,369 |
public JDialog createDialog(Component parentComponent, String title) { Frame frame = JOptionPane.getFrameForComponent(parentComponent); final JDialog dialog = new JDialog(frame, title, false); Container contentPane = dialog.getContentPane(); contentPane.setLayout(new BorderLayout()... | public JDialog createDialog(Component parentComponent, String title) { Frame frame = JOptionPane.getFrameForComponent(parentComponent); final JDialog dialog = new JDialog(frame, title, false); Container contentPane = dialog.getContentPane(); contentPane.setLayout(new BorderLayout()... | 4,370 |
public JDialog createDialog(Component parentComponent, String title) { Frame frame = JOptionPane.getFrameForComponent(parentComponent); final JDialog dialog = new JDialog(frame, title, false); Container contentPane = dialog.getContentPane(); contentPane.setLayout(new BorderLayout()... | public JDialog createDialog(Component parentComponent, String title) { Frame frame = JOptionPane.getFrameForComponent(parentComponent); final JDialog dialog = new JDialog(frame, title, false); Container contentPane = dialog.getContentPane(); contentPane.setLayout(new BorderLayout()... | 4,371 |
public JDialog createDialog(Component parentComponent, String title) { Frame frame = JOptionPane.getFrameForComponent(parentComponent); final JDialog dialog = new JDialog(frame, title, false); Container contentPane = dialog.getContentPane(); contentPane.setLayout(new BorderLayout()... | public JDialog createDialog(Component parentComponent, String title) { Frame frame = JOptionPane.getFrameForComponent(parentComponent); final JDialog dialog = new JDialog(frame, title, false); Container contentPane = dialog.getContentPane(); contentPane.setLayout(new BorderLayout()... | 4,372 |
public JDialog createDialog(Component parentComponent, String title) { Frame frame = JOptionPane.getFrameForComponent(parentComponent); final JDialog dialog = new JDialog(frame, title, false); Container contentPane = dialog.getContentPane(); contentPane.setLayout(new BorderLayout()... | public JDialog createDialog(Component parentComponent, String title) { Frame frame = JOptionPane.getFrameForComponent(parentComponent); final JDialog dialog = new JDialog(frame, title, false); Container contentPane = dialog.getContentPane(); contentPane.setLayout(new BorderLayout()... | 4,373 |
public void windowActivated(WindowEvent we) { // Once window gets focus, set initial focus if (!gotFocus) { selectInitialValue(); gotFocus = true; } } | public void windowActivated(WindowEvent we) { // Once window gets focus, set initial focus if (!gotFocus) { selectInitialValue(); gotFocus = true; } } | 4,374 |
public void windowClosing(WindowEvent we) { setValue(null); } | public void windowClosing(WindowEvent we) { setValue(null); } | 4,375 |
public void propertyChange(PropertyChangeEvent event) { if(dialog.isVisible() && event.getSource() == ProgressOptionPane.this && (event.getPropertyName().equals(VALUE_PROPERTY) || event.getPropertyName().equals(INPUT_VALUE_PROPE... | public void propertyChange(PropertyChangeEvent event) { if(dialog.isVisible() && event.getSource() == ProgressOptionPane.this && (event.getPropertyName().equals(VALUE_PROPERTY) || event.getPropertyName().equals(INPUT_VALUE_PROPE... | 4,376 |
public int getMaxCharactersPerLineCount() { return 60; } | public int getMaxCharactersPerLineCount() { return 60; } | 4,377 |
public boolean isCanceled() { if (this == null) return false; Object v = this.getValue(); return (v != null); } | public boolean isCanceled() { if (this == null) return false; Object v = this.getValue(); return (v != null); } | 4,378 |
public void reset() { Object[] option = this.getOptions(); option[0] = UIManager.getString("OptionPane.cancelButtonText"); this.setOptions(option); monitor.setValue(null); } | public void reset() { Object[] option = this.getOptions(); option[0] = UIManager.getString("OptionPane.cancelButtonText"); this.setOptions(option); monitor.setValue(null); } | 4,379 |
public void reset() { Object[] option = this.getOptions(); option[0] = UIManager.getString("OptionPane.cancelButtonText"); this.setOptions(option); monitor.setValue(null); } | public void reset() { Object[] option = this.getOptions(); option[0] = UIManager.getString("OptionPane.cancelButtonText"); this.setOptions(option); monitor.setValue(null); } | 4,380 |
public void setDone() { Object[] option = this.getOptions(); option[0] = LangTool.getString("xtfr.tableDone"); this.setOptions(option); setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR)); } | public void setDone() { Object[] option = this.getOptions(); option[0] = LangTool.getString("xtfr.tableDone"); this.setOptions(option); setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR)); } | 4,381 |
public XTFRFile (Frame parent,tnvt pvt, Session session) { //super(parent); super(); setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR)); this.session = session; vt = pvt; ftpProtocol = new FTP5250Prot(vt); ftpProtocol.addFTPStatusListener(this); axtfr = new AS400Xtfr(vt... | public XTFRFile(Frame parent, tnvt pvt, Session session) { //super(parent); super(); setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR)); this.session = session; vt = pvt; ftpProtocol = new FTP5250Prot(vt); ftpProtocol.addFTPStatusListener(this); axtfr = new AS400Xtfr(vt... | 4,382 |
public XTFRFile (Frame parent,tnvt pvt, Session session) { //super(parent); super(); setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR)); this.session = session; vt = pvt; ftpProtocol = new FTP5250Prot(vt); ftpProtocol.addFTPStatusListener(this); axtfr = new AS400Xtfr(vt... | public XTFRFile (Frame parent,tnvt pvt, Session session) { //super(parent); super(); setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR)); this.session = session; vt = pvt; ftpProtocol = new FTP5250Prot(vt); ftpProtocol.addFTPStatusListener(this); axtfr = new AS400Xtfr(vt... | 4,383 |
public XTFRFile (Frame parent,tnvt pvt, Session session) { //super(parent); super(); setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR)); this.session = session; vt = pvt; ftpProtocol = new FTP5250Prot(vt); ftpProtocol.addFTPStatusListener(this); axtfr = new AS400Xtfr(vt... | public XTFRFile (Frame parent,tnvt pvt, Session session) { //super(parent); super(); setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR)); this.session = session; vt = pvt; ftpProtocol = new FTP5250Prot(vt); ftpProtocol.addFTPStatusListener(this); axtfr = new AS400Xtfr(vt... | 4,384 |
public XTFRFile (Frame parent,tnvt pvt, Session session) { //super(parent); super(); setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR)); this.session = session; vt = pvt; ftpProtocol = new FTP5250Prot(vt); ftpProtocol.addFTPStatusListener(this); axtfr = new AS400Xtfr(vt... | public XTFRFile (Frame parent,tnvt pvt, Session session) { //super(parent); super(); setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR)); this.session = session; vt = pvt; ftpProtocol = new FTP5250Prot(vt); ftpProtocol.addFTPStatusListener(this); axtfr = new AS400Xtfr(vt... | 4,385 |
public XTFRFile (Frame parent,tnvt pvt, Session session) { //super(parent); super(); setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR)); this.session = session; vt = pvt; ftpProtocol = new FTP5250Prot(vt); ftpProtocol.addFTPStatusListener(this); axtfr = new AS400Xtfr(vt... | public XTFRFile (Frame parent,tnvt pvt, Session session) { //super(parent); super(); setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR)); this.session = session; vt = pvt; ftpProtocol = new FTP5250Prot(vt); ftpProtocol.addFTPStatusListener(this); axtfr = new AS400Xtfr(vt... | 4,386 |
public XTFRFile (Frame parent,tnvt pvt, Session session) { //super(parent); super(); setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR)); this.session = session; vt = pvt; ftpProtocol = new FTP5250Prot(vt); ftpProtocol.addFTPStatusListener(this); axtfr = new AS400Xtfr(vt... | public XTFRFile (Frame parent,tnvt pvt, Session session) { //super(parent); super(); setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR)); this.session = session; vt = pvt; ftpProtocol = new FTP5250Prot(vt); ftpProtocol.addFTPStatusListener(this); axtfr = new AS400Xtfr(vt... | 4,387 |
public void windowClosing(WindowEvent we) { if (ftpProtocol.isConnected()) ftpProtocol.disconnect(); } | public void windowClosing(WindowEvent we) { if (ftpProtocol.isConnected()) ftpProtocol.disconnect(); } | 4,388 |
public void actionPerformed(ActionEvent e) { if (e.getActionCommand().equals("XTFR") || e.getActionCommand().equals("EMAIL")) { saveXTFRFields(); if (e.getActionCommand().equals("EMAIL")) emailIt = true; else emailIt = false; initializeMonit... | public void actionPerformed(ActionEvent e) { if (e.getActionCommand().equals("XTFR") || e.getActionCommand().equals("EMAIL")) { saveXTFRFields(); if (e.getActionCommand().equals("EMAIL")) emailIt = true; else emailIt = false; initializeMonit... | 4,389 |
public void actionPerformed(ActionEvent e) { if (e.getActionCommand().equals("XTFR") || e.getActionCommand().equals("EMAIL")) { saveXTFRFields(); if (e.getActionCommand().equals("EMAIL")) emailIt = true; else emailIt = false; initializeMonit... | public void actionPerformed(ActionEvent e) { if (e.getActionCommand().equals("XTFR") || e.getActionCommand().equals("EMAIL")) { saveXTFRFields(); if (e.getActionCommand().equals("EMAIL")) emailIt = true; else emailIt = false; initializeMonit... | 4,390 |
public void actionPerformed(ActionEvent e) { if (e.getActionCommand().equals("XTFR") || e.getActionCommand().equals("EMAIL")) { saveXTFRFields(); if (e.getActionCommand().equals("EMAIL")) emailIt = true; else emailIt = false; initializeMonit... | public void actionPerformed(ActionEvent e) { if (e.getActionCommand().equals("XTFR") || e.getActionCommand().equals("EMAIL")) { saveXTFRFields(); if (e.getActionCommand().equals("EMAIL")) emailIt = true; else emailIt = false; initializeMonit... | 4,391 |
public void actionPerformed(ActionEvent e) { if (e.getActionCommand().equals("XTFR") || e.getActionCommand().equals("EMAIL")) { saveXTFRFields(); if (e.getActionCommand().equals("EMAIL")) emailIt = true; else emailIt = false; initializeMonit... | public void actionPerformed(ActionEvent e) { if (e.getActionCommand().equals("XTFR") || e.getActionCommand().equals("EMAIL")) { saveXTFRFields(); if (e.getActionCommand().equals("EMAIL")) emailIt = true; else emailIt = false; initializeMonit... | 4,392 |
public void actionPerformed(ActionEvent e) { if (e.getActionCommand().equals("XTFR") || e.getActionCommand().equals("EMAIL")) { saveXTFRFields(); if (e.getActionCommand().equals("EMAIL")) emailIt = true; else emailIt = false; initializeMonit... | public void actionPerformed(ActionEvent e) { if (e.getActionCommand().equals("XTFR") || e.getActionCommand().equals("EMAIL")) { saveXTFRFields(); if (e.getActionCommand().equals("EMAIL")) emailIt = true; else emailIt = false; initializeMonit... | 4,393 |
public void actionPerformed(ActionEvent e) { if (e.getActionCommand().equals("XTFR") || e.getActionCommand().equals("EMAIL")) { saveXTFRFields(); if (e.getActionCommand().equals("EMAIL")) emailIt = true; else emailIt = false; initializeMonit... | public void actionPerformed(ActionEvent e) { if (e.getActionCommand().equals("XTFR") || e.getActionCommand().equals("EMAIL")) { saveXTFRFields(); if (e.getActionCommand().equals("EMAIL")) emailIt = true; else emailIt = false; initializeMonit... | 4,394 |
public void actionPerformed(ActionEvent e) { if (e.getActionCommand().equals("XTFR") || e.getActionCommand().equals("EMAIL")) { saveXTFRFields(); if (e.getActionCommand().equals("EMAIL")) emailIt = true; else emailIt = false; initializeMonit... | public void actionPerformed(ActionEvent e) { if (e.getActionCommand().equals("XTFR") || e.getActionCommand().equals("EMAIL")) { saveXTFRFields(); if (e.getActionCommand().equals("EMAIL")) emailIt = true; else emailIt = false; initializeMonit... | 4,395 |
public void actionPerformed(ActionEvent e) { if (e.getActionCommand().equals("XTFR") || e.getActionCommand().equals("EMAIL")) { saveXTFRFields(); if (e.getActionCommand().equals("EMAIL")) emailIt = true; else emailIt = false; initializeMonit... | public void actionPerformed(ActionEvent e) { if (e.getActionCommand().equals("XTFR") || e.getActionCommand().equals("EMAIL")) { saveXTFRFields(); if (e.getActionCommand().equals("EMAIL")) emailIt = true; else emailIt = false; initializeMonit... | 4,396 |
public void actionPerformed(ActionEvent e) { if (e.getActionCommand().equals("XTFR") || e.getActionCommand().equals("EMAIL")) { saveXTFRFields(); if (e.getActionCommand().equals("EMAIL")) emailIt = true; else emailIt = false; initializeMonit... | public void actionPerformed(ActionEvent e) { if (e.getActionCommand().equals("XTFR") || e.getActionCommand().equals("EMAIL")) { saveXTFRFields(); if (e.getActionCommand().equals("EMAIL")) emailIt = true; else emailIt = false; initializeMonit... | 4,397 |
public void actionPerformed(ActionEvent e) { if (e.getActionCommand().equals("XTFR") || e.getActionCommand().equals("EMAIL")) { saveXTFRFields(); if (e.getActionCommand().equals("EMAIL")) emailIt = true; else emailIt = false; initializeMonit... | public void actionPerformed(ActionEvent e) { if (e.getActionCommand().equals("XTFR") || e.getActionCommand().equals("EMAIL")) { saveXTFRFields(); if (e.getActionCommand().equals("EMAIL")) emailIt = true; else emailIt = false; initializeMonit... | 4,398 |
public void actionPerformed(ActionEvent e) { if (e.getActionCommand().equals("XTFR") || e.getActionCommand().equals("EMAIL")) { saveXTFRFields(); if (e.getActionCommand().equals("EMAIL")) emailIt = true; else emailIt = false; initializeMonit... | public void actionPerformed(ActionEvent e) { if (e.getActionCommand().equals("XTFR") || e.getActionCommand().equals("EMAIL")) { saveXTFRFields(); if (e.getActionCommand().equals("EMAIL")) emailIt = true; else emailIt = false; initializeMonit... | 4,399 |
public void actionPerformed(ActionEvent e) { if (e.getActionCommand().equals("XTFR") || e.getActionCommand().equals("EMAIL")) { saveXTFRFields(); if (e.getActionCommand().equals("EMAIL")) emailIt = true; else emailIt = false; initializeMonit... | public void actionPerformed(ActionEvent e) { if (e.getActionCommand().equals("XTFR") || e.getActionCommand().equals("EMAIL")) { saveXTFRFields(); if (e.getActionCommand().equals("EMAIL")) emailIt = true; else emailIt = false; initializeMonit... | 4,400 |
public void actionPerformed(ActionEvent e) { if (e.getActionCommand().equals("XTFR") || e.getActionCommand().equals("EMAIL")) { saveXTFRFields(); if (e.getActionCommand().equals("EMAIL")) emailIt = true; else emailIt = false; initializeMonit... | public void actionPerformed(ActionEvent e) { if (e.getActionCommand().equals("XTFR") || e.getActionCommand().equals("EMAIL")) { saveXTFRFields(); if (e.getActionCommand().equals("EMAIL")) emailIt = true; else emailIt = false; initializeMonit... | 4,401 |
public void actionPerformed(ActionEvent e) { if (e.getActionCommand().equals("XTFR") || e.getActionCommand().equals("EMAIL")) { saveXTFRFields(); if (e.getActionCommand().equals("EMAIL")) emailIt = true; else emailIt = false; initializeMonit... | public void actionPerformed(ActionEvent e) { if (e.getActionCommand().equals("XTFR") || e.getActionCommand().equals("EMAIL")) { saveXTFRFields(); if (e.getActionCommand().equals("EMAIL")) emailIt = true; else emailIt = false; initializeMonit... | 4,402 |
public void actionPerformed(ActionEvent e) { if (e.getActionCommand().equals("XTFR") || e.getActionCommand().equals("EMAIL")) { saveXTFRFields(); if (e.getActionCommand().equals("EMAIL")) emailIt = true; else emailIt = false; initializeMonit... | public void actionPerformed(ActionEvent e) { if (e.getActionCommand().equals("XTFR") || e.getActionCommand().equals("EMAIL")) { saveXTFRFields(); if (e.getActionCommand().equals("EMAIL")) emailIt = true; else emailIt = false; initializeMonit... | 4,403 |
public void commandStatusReceived(FTPStatusEvent statusevent) { final String message = statusevent.getMessage() + '\n'; Runnable cdp = new Runnable () { public void run() { taskOutput.setText( taskOutput.getText() + message); } }; SwingUtilities.invokeLate... | public void commandStatusReceived(FTPStatusEvent statusevent) { final String message = statusevent.getMessage() + '\n'; Runnable cdp = new Runnable () { public void run() { taskOutput.setText( taskOutput.getText() + message); } }; SwingUtilities.invokeLate... | 4,404 |
public void commandStatusReceived(FTPStatusEvent statusevent) { final String message = statusevent.getMessage() + '\n'; Runnable cdp = new Runnable () { public void run() { taskOutput.setText( taskOutput.getText() + message); } }; SwingUtilities.invokeLate... | public void commandStatusReceived(FTPStatusEvent statusevent) { final String message = statusevent.getMessage() + '\n'; Runnable cdp = new Runnable () { public void run() { taskOutput.setText( taskOutput.getText() + message); } }; SwingUtilities.invokeLater... | 4,405 |
public void run() { taskOutput.setText( taskOutput.getText() + message); } | public void run() { taskOutput.setText( taskOutput.getText() + message); } | 4,406 |
private void createProgressMonitor() { progressBar = new JProgressBar(0, 0); progressBar.setValue(0); taskOutput = new JTextArea(5, 20); taskOutput.setMargin(new Insets(5,5,5,5)); taskOutput.setEditable(false); JPanel panel = new JPanel(); note = new JLabel(); note.setForegrou... | private void createProgressMonitor() { progressBar = new JProgressBar(0, 0); progressBar.setValue(0); taskOutput = new JTextArea(5, 20); taskOutput.setMargin(new Insets(5,5,5,5)); taskOutput.setEditable(false); JPanel panel = new JPanel(); note = new JLabel(); note.setForegrou... | 4,407 |
private void createProgressMonitor() { progressBar = new JProgressBar(0, 0); progressBar.setValue(0); taskOutput = new JTextArea(5, 20); taskOutput.setMargin(new Insets(5,5,5,5)); taskOutput.setEditable(false); JPanel panel = new JPanel(); note = new JLabel(); note.setForegrou... | private void createProgressMonitor() { progressBar = new JProgressBar(0, 0); progressBar.setValue(0); taskOutput = new JTextArea(5, 20); taskOutput.setMargin(new Insets(5,5,5,5)); taskOutput.setEditable(false); JPanel panel = new JPanel(); note = new JLabel(); note.setForegrou... | 4,408 |
private void createProgressMonitor() { progressBar = new JProgressBar(0, 0); progressBar.setValue(0); taskOutput = new JTextArea(5, 20); taskOutput.setMargin(new Insets(5,5,5,5)); taskOutput.setEditable(false); JPanel panel = new JPanel(); note = new JLabel(); note.setForegrou... | private void createProgressMonitor() { progressBar = new JProgressBar(0, 0); progressBar.setValue(0); taskOutput = new JTextArea(5, 20); taskOutput.setMargin(new Insets(5,5,5,5)); taskOutput.setEditable(false); JPanel panel = new JPanel(); note = new JLabel(); note.setForegrou... | 4,409 |
private void createProgressMonitor() { progressBar = new JProgressBar(0, 0); progressBar.setValue(0); taskOutput = new JTextArea(5, 20); taskOutput.setMargin(new Insets(5,5,5,5)); taskOutput.setEditable(false); JPanel panel = new JPanel(); note = new JLabel(); note.setForegrou... | private void createProgressMonitor() { progressBar = new JProgressBar(0, 0); progressBar.setValue(0); taskOutput = new JTextArea(5, 20); taskOutput.setMargin(new Insets(5,5,5,5)); taskOutput.setEditable(false); JPanel panel = new JPanel(); note = new JLabel(); note.setForegrou... | 4,410 |
private void createProgressMonitor() { progressBar = new JProgressBar(0, 0); progressBar.setValue(0); taskOutput = new JTextArea(5, 20); taskOutput.setMargin(new Insets(5,5,5,5)); taskOutput.setEditable(false); JPanel panel = new JPanel(); note = new JLabel(); note.setForegrou... | private void createProgressMonitor() { progressBar = new JProgressBar(0, 0); progressBar.setValue(0); taskOutput = new JTextArea(5, 20); taskOutput.setMargin(new Insets(5,5,5,5)); taskOutput.setEditable(false); JPanel panel = new JPanel(); note = new JLabel(); note.setForegrou... | 4,411 |
private void createProgressMonitor() { progressBar = new JProgressBar(0, 0); progressBar.setValue(0); taskOutput = new JTextArea(5, 20); taskOutput.setMargin(new Insets(5,5,5,5)); taskOutput.setEditable(false); JPanel panel = new JPanel(); note = new JLabel(); note.setForegrou... | private void createProgressMonitor() { progressBar = new JProgressBar(0, 0); progressBar.setValue(0); taskOutput = new JTextArea(5, 20); taskOutput.setMargin(new Insets(5,5,5,5)); taskOutput.setEditable(false); JPanel panel = new JPanel(); note = new JLabel(); note.setForegrou... | 4,412 |
private void createProgressMonitor() { progressBar = new JProgressBar(0, 0); progressBar.setValue(0); taskOutput = new JTextArea(5, 20); taskOutput.setMargin(new Insets(5,5,5,5)); taskOutput.setEditable(false); JPanel panel = new JPanel(); note = new JLabel(); note.setForegrou... | private void createProgressMonitor() { progressBar = new JProgressBar(0, 0); progressBar.setValue(0); taskOutput = new JTextArea(5, 20); taskOutput.setMargin(new Insets(5,5,5,5)); taskOutput.setEditable(false); JPanel panel = new JPanel(); note = new JLabel(); note.setForegrou... | 4,413 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.