bugged stringlengths 6 599k | fixed stringlengths 6 40.8M | __index_level_0__ int64 0 3.24M |
|---|---|---|
public TableColumn getColumn(int columnIndex); | public TableColumn getColumn(int columnIndex); | 15,517 |
public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column); | public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column); | 15,518 |
public int getTotalColumnWidth(); | public int getTotalColumnWidth(); | 15,519 |
public SocketException(String message) { super(message); } | public SocketException() { super(message); } | 15,520 |
public SocketException(String message) { super(message); } | public SocketException(String message) { } | 15,521 |
ClassLoader getCallingClassLoader() { Class[] stack = getClassContext(); /* for (int i = 0; i < stack.length; i++) { if (stack[i] != Security.class && stack[i] != ResourceBundle.class) return stack[i].getClassLoader(); } return null; */ return stack[3].getClassLoader... | ClassLoadergetCallingClassLoader(){Class[]stack=getClassContext();/*for(inti=0;i<stack.length;i++) { if(stack[i]!=Security.class&&stack[i]!=ResourceBundle.class) returnstack[i].getClassLoader(); }returnnull;*/returnstack[3].getClassLoader();} | 15,522 |
ClassLoader getCallingClassLoader() { Class[] stack = getClassContext(); /* for (int i = 0; i < stack.length; i++) { if (stack[i] != Security.class && stack[i] != ResourceBundle.class) return stack[i].getClassLoader(); } return null; */ return stack[3].getClassLoader... | ClassLoader getCallingClassLoader() { Class[] stack = getClassContext(); for (int i = 0; i < stack.length; i++) { if (stack[i] != Security.class && stack[i] != ResourceBundle.class) return stack[i].getClassLoader(); } return null; */ return stack[3].getClassLoader();... | 15,523 |
ClassLoader getCallingClassLoader() { Class[] stack = getClassContext(); /* for (int i = 0; i < stack.length; i++) { if (stack[i] != Security.class && stack[i] != ResourceBundle.class) return stack[i].getClassLoader(); } return null; */ return stack[3].getClassLoader... | ClassLoader getCallingClassLoader() { Class[] stack = getClassContext(); /* for (int i = 0; i < stack.length; i++) { if (stack[i] != Security.class && stack[i] != ResourceBundle.class) return stack[i].getClassLoader(); } return null; */ return stack[3].getClassLoader... | 15,524 |
private static final ResourceBundle tryBundle(String localizedName, Locale locale, ClassLoader classloader, ResourceBundle bundle, ... | private static final ResourceBundle tryBundle(String localizedName, Locale locale, ClassLoader classloader, ResourceBundle bundle, ... | 15,526 |
private static final ResourceBundle tryBundle(String localizedName, Locale locale, ClassLoader classloader, ResourceBundle bundle, ... | private static final ResourceBundle tryBundle(String localizedName, Locale locale, ClassLoader classloader, ResourceBundle bundle, ... | 15,527 |
private static final ResourceBundle tryLocalBundle(String baseName, Locale locale, ClassLoader classloader, ResourceBundle bundle, HashMap cache) { ... | private static final ResourceBundle tryLocalBundle(String baseName, Locale locale, ClassLoader classloader, ResourceBundle bundle, HashMap cache) { ... | 15,528 |
public Locale(String language) { this(language, "", ""); } | public Locale(String language, String country, String variant) { this(language, "", ""); } | 15,529 |
public Locale(String language) { this(language, "", ""); } | public Locale(String language) { if (defaultLocale != null) { language = convertLanguage(language).intern(); country = country.toUpperCase().intern(); variant = variant.intern(); } this.language = language; this.country = country; this.variant = variant; hashcode = language.hashCode() ^ country.hashCode()... | 15,530 |
public JCheckBox() { this(null, null); } | public JCheckBox() { this(null, null); } | 15,531 |
public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) { return null; } | public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) { if (value!=null) super.setText(val... | 15,532 |
public void setSelected(boolean b) { getModel().setSelected(b); } | public void setSelected(boolean b) { getModel().setSelected(b); } | 15,533 |
public void setIcon(Icon icon) { this.icon = icon; if (icon != null) { // XXX FIXME - icons do not know their parent // icon.setParent(this); } revalidate(); repaint(); } | public void setIcon(Icon icon) { this.icon = icon; if (icon != null) { // XXX FIXME - icons do not know their parent // icon.setParent(this); } revalidate(); repaint(); } | 15,534 |
public DefaultTableModel(int numRows, int numColumns) { // Variables int columnIndex; Vector defaultNames; // Create Column Names defaultNames = new Vector(); for (columnIndex = 0; columnIndex < numColumns; columnIndex++) { defaultNames.addElement(super.getColumnName(columnIndex)); } // for // Setup Data//... | public DefaultTableModel(int numRows, int numColumns) { // Variables int columnIndex; Vector defaultNames; // Create Column Names defaultNames = new Vector(); for (columnIndex = 0; columnIndex < numColumns; columnIndex++) { defaultNames.addElement(super.getColumnName(columnIndex)); } // for // Setup Data//... | 15,535 |
public ListSelectionModel getSelectionModel(); | public ListSelectionModel getSelectionModel(); | 15,536 |
public String getColumnName(int columnIndex); | public String getColumnName(int columnIndex); | 15,537 |
public void addColumn(TableColumn column); | public void addColumn(TableColumn column); | 15,538 |
public int getColumnCount(); | public int getColumnCount(); | 15,539 |
public TableColumn(int modelIndex) { this(modelIndex, 75, null, null); } // TableColumn() | public TableColumn(int modelIndex) { this(modelIndex, 75, null, null); } // TableColumn() | 15,540 |
public void removeColumn(TableColumn column); | public void removeColumn(TableColumn column); | 15,541 |
public Class getColumnClass(int columnIndex); | public Class getColumnClass(int columnIndex); | 15,542 |
public int getColumnMargin(); | public int getColumnMargin(); | 15,543 |
public int getColumnIndex(Object columnIdentifier); | public int getColumnIndex(Object columnIdentifier); | 15,544 |
public boolean getColumnSelectionAllowed(); | public boolean getColumnSelectionAllowed(); | 15,545 |
public int getRowCount(); | public int getRowCount(); | 15,547 |
public Object getValueAt(int rowIndex, int columnIndex); | public Object getValueAt(int rowIndex, int columnIndex); | 15,548 |
public void addColumnModelListener(TableColumnModelListener listener); | public void addColumnModelListener(TableColumnModelListener listener); | 15,549 |
public boolean isCellEditable(int rowIndex, int columnIndex); | public boolean isCellEditable(int rowIndex, int columnIndex); | 15,550 |
public void moveColumn(int columnIndex, int newIndex); | public void moveColumn(int columnIndex, int newIndex); | 15,551 |
public void addCellEditorListener(CellEditorListener listener); | public void addCellEditorListener(CellEditorListener listener); | 15,552 |
public void removeColumnModelListener(TableColumnModelListener listener); | public void removeColumnModelListener(TableColumnModelListener listener); | 15,553 |
public void setColumnSelectionAllowed(boolean value); | public void setColumnSelectionAllowed(boolean value); | 15,554 |
public void setColumnMargin(int margin); | public void setColumnMargin(int margin); | 15,555 |
public void removeTableModelListener(TableModelListener listener); | public void removeTableModelListener(TableModelListener listener); | 15,556 |
public void addTableModelListener(TableModelListener listener); | public void addTableModelListener(TableModelListener listener); | 15,557 |
public void setValueAt(Object aValue, int rowIndex, int columnIndex); | public void setValueAt(Object aValue, int rowIndex, int columnIndex); | 15,558 |
public MultipleComponentProfileHolder(TaggedComponent[] initialValue) { value = initialValue; } | public MultipleComponentProfileHolder() { value = initialValue; } | 15,559 |
public MultipleComponentProfileHolder(TaggedComponent[] initialValue) { value = initialValue; } | public MultipleComponentProfileHolder(TaggedComponent[] initialValue) { } | 15,560 |
public String getText() { return text; } | public String getText() { return text; } | 15,562 |
public void setValue(Object v) { val = v; } | public void setValue(Object v) { val = v; } | 15,563 |
Box(int a) { setLayout(new BoxLayout(this, a)); } | Box(int a) { setLayout(new BoxLayout(this, a)); } | 15,564 |
public static Border createEmptyBorder( int top, int left, int bottom, int right) { /* Creates an empty border that takes up no space but which does no drawing, specifying the width of the top, left, bottom, and right sides. Parameters: top - an int specifying the width of the top in pixelsleft - an int... | public static Border createEmptyBorder( int top, int left, int bottom, int right) { /* Creates an empty border that takes up no space but which does no drawing, specifying the width of the top, left, bottom, and right sides. Parameters: top - an int specifying the width of the top in pixelsleft - an int... | 15,565 |
public JComboBox(Object[] value0) { // TODO } // JComboBox() | public JComboBox(Object[] value0) { // TODO } // JComboBox() | 15,566 |
public void connect() throws IOException { if (connected) { return; } String protocol = url.getProtocol(); boolean secure = "https".equals(protocol); String host = url.getHost(); int port = url.getPort(); if (port < 0) { port = secure ? HTTPConnection.HTTPS_PORT : ... | public void connect() throws IOException { if (connected) { return; } String protocol = url.getProtocol(); boolean secure = "https".equals(protocol); String host = url.getHost(); int port = url.getPort(); if (port < 0) { port = secure ? HTTPConnection.HTTPS_PORT : ... | 15,567 |
public void connect() throws IOException { if (connected) { return; } String protocol = url.getProtocol(); boolean secure = "https".equals(protocol); String host = url.getHost(); int port = url.getPort(); if (port < 0) { port = secure ? HTTPConnection.HTTPS_PORT : ... | public void connect() throws IOException { if (connected) { return; } String protocol = url.getProtocol(); boolean secure = "https".equals(protocol); String host = url.getHost(); int port = url.getPort(); if (port < 0) { port = secure ? HTTPConnection.HTTPS_PORT : ... | 15,568 |
HTTPConnection getConnection(String host, int port, boolean secure) throws IOException { HTTPConnection connection; if (keepAlive) { StringBuffer buf = new StringBuffer(secure ? "https://" : "http://"); buf.append(Thread.currentThread().hashCode()); buf.append('@'); buf.appe... | HTTPConnection getConnection(String host, int port, boolean secure) throws IOException { HTTPConnection connection; if (keepAlive) { StringBuffer buf = new StringBuffer(secure ? "https://" : "http://"); buf.append(Thread.currentThread().hashCode()); buf.append('@'); buf.appe... | 15,569 |
HTTPConnection getConnection(String host, int port, boolean secure) throws IOException { HTTPConnection connection; if (keepAlive) { StringBuffer buf = new StringBuffer(secure ? "https://" : "http://"); buf.append(Thread.currentThread().hashCode()); buf.append('@'); buf.appe... | HTTPConnection getConnection(String host, int port, boolean secure) throws IOException { HTTPConnection connection; if (keepAlive) { StringBuffer buf = new StringBuffer(secure ? "https://" : "http://"); buf.append(Thread.currentThread().hashCode()); buf.append('@'); buf.appe... | 15,570 |
HTTPConnection getConnection(String host, int port, boolean secure) throws IOException { HTTPConnection connection; if (keepAlive) { StringBuffer buf = new StringBuffer(secure ? "https://" : "http://"); buf.append(Thread.currentThread().hashCode()); buf.append('@'); buf.appe... | HTTPConnection getConnection(String host, int port, boolean secure) throws IOException { HTTPConnection connection; if (keepAlive) { StringBuffer buf = new StringBuffer(secure ? "https://" : "http://"); buf.append(Thread.currentThread().hashCode()); buf.append('@'); buf.appe... | 15,571 |
public Map getHeaderFields() { if (!connected) { try { connect(); } catch (IOException e) { return null; } } Map headers = response.getHeaders(); Map ret = new LinkedHashMap(); ret.put("", Collections.singletonList(getStatu... | public Map getHeaderFields() { if (!connected) { try { connect(); } catch (IOException e) { return null; } } Map headers = response.getHeaders(); Map ret = new LinkedHashMap(); ret.put("", Collections.singletonList(getStatu... | 15,572 |
public Map getHeaderFields() { if (!connected) { try { connect(); } catch (IOException e) { return null; } } Map headers = response.getHeaders(); Map ret = new LinkedHashMap(); ret.put("", Collections.singletonList(getStatu... | public Map getHeaderFields() { if (!connected) { try { connect(); } catch (IOException e) { return null; } } Map headers = response.getHeaders(); Map ret = new LinkedHashMap(); ret.put("", Collections.singletonList(getStatu... | 15,573 |
public int getCodeClass() { return codeClass; } | public int getCodeClass() { return code / 100; } | 15,574 |
public HTTPConnection(String hostname, int port, boolean secure) { this(hostname, port, secure, 0, 0); } | public HTTPConnection(String hostname) { this(hostname, port, secure, 0, 0); } | 15,575 |
public HTTPConnection(String hostname, int port, boolean secure) { this(hostname, port, secure, 0, 0); } | public HTTPConnection(String hostname, int port, boolean secure) { this(hostname, HTTP_PORT, false, 0, 0); } | 15,576 |
public void clearSelection(); | public void clearSelection(); | 15,577 |
public int write(ByteBuffer src) throws IOException; | public int write(ByteBuffer src) throws IOException; | 15,578 |
public Component getComponent(); | public Component getComponent(); | 15,579 |
public void setValue(Object value, boolean selected); | public void setValue(Object value, boolean selected); | 15,580 |
public MouseHandler(Device fbDevice, Dimension screenSize) { HardwareCursorAPI hwCursor = null; Device pointerDevice = null; PointerAPI pointerAPI = null; try { hwCursor = (HardwareCursorAPI) fbDevice.getAPI(HardwareCursorAPI.class); } catch (ApiNotFoundException ex) { log.info("No hardware-cursor found on de... | public MouseHandler(Device fbDevice, Dimension screenSize) { HardwareCursorAPI hwCursor = null; Device pointerDevice = null; PointerAPI pointerAPI = null; try { hwCursor = (HardwareCursorAPI) fbDevice.getAPI(HardwareCursorAPI.class); } catch (ApiNotFoundException ex) { log.info("No hardware-cursor found on de... | 15,581 |
public BufferedImage createCompatibleImage(int w, int h) { return createCompatibleImage(w, h, Transparency.OPAQUE); } | public BufferedImage createCompatibleImage(int w, int h) { return createCompatibleImage(w, h, Transparency.OPAQUE); } | 15,582 |
public abstract Image createImage(byte[] data, int offset, int len); | public abstract Image createImage(byte[] data, int offset, int len); | 15,583 |
public CodeSource(URL location, Certificate[] certs) { this.location = location; if (certs != null) this.certs = new HashSet(Arrays.asList(certs)); } | public CodeSource(URL location, Certificate[] certs) { this.location = location; if (certs != null) this.certs = new HashSet(Arrays.asList(certs)); } | 15,584 |
public CodeSource(URL location, Certificate[] certs) { this.location = location; if (certs != null) this.certs = new HashSet(Arrays.asList(certs)); } | public CodeSource(URL location, Certificate[] certs) { this.location = location; if (certs != null) this.certs = new HashSet(Arrays.asList(certs)); } | 15,585 |
public boolean equals(Object obj) { if (!(obj instanceof CodeSource)) return false; CodeSource cs = (CodeSource) obj; return (certs == null ? cs.certs == null : certs.equals(cs.certs)) && (location == null ? cs.location == null : location .equals(cs.locatio... | public boolean equals(Object obj) { if (!(obj instanceof CodeSource)) return false; CodeSource cs = (CodeSource) obj; return (certs == null ? cs.certs == null : certs.equals(cs.certs)) && (location == null ? cs.location == null : location .equals(cs.locatio... | 15,586 |
public boolean equals(Object obj) { if (!(obj instanceof CodeSource)) return false; CodeSource cs = (CodeSource) obj; return (certs == null ? cs.certs == null : certs.equals(cs.certs)) && (location == null ? cs.location == null : location .equals(cs.locatio... | public boolean equals(Object obj) { if (!(obj instanceof CodeSource)) return false; CodeSource cs = (CodeSource) obj; return (certs == null ? cs.certs == null : certs.equals(cs.certs)) && (location == null ? cs.location == null : location .equals(cs.locatio... | 15,587 |
public final Certificate[] getCertificates() { if (certs == null) return null; Certificate[] c = new Certificate[ certs.size()]; certs.toArray(c); return c; } | public final Certificate[] getCertificates() { if (certs == null) return null; Certificate[] c = new Certificate[ certs.size()]; certs.toArray(c); return c; } | 15,588 |
public final URL getLocation() { return location; } | public final URL getLocation() { return location; } | 15,589 |
public int hashCode() { return (location == null ? 0 : location.hashCode()) ^ (certs == null ? 0 : certs.hashCode()); } | public int hashCode() { return (location == null ? 0 : location.hashCode()) ^ (certs == null ? 0 : certs.hashCode()); } | 15,590 |
public boolean implies(CodeSource cs) { if (cs == null) return false; // First check the certificate list. if (certs != null && (cs.certs == null || !certs.containsAll(cs.certs))) { return false; } // Next check the location. if (location == null) { return true; } if (cs.lo... | public boolean implies(CodeSource cs) { if (cs == null) return false; // First check the certificate list. if (certs != null && (cs.certs == null || !certs.containsAll(cs.certs))) { return false; } // Next check the location. if (location == null) { return true; } if (cs.lo... | 15,591 |
public boolean implies(CodeSource cs) { if (cs == null) return false; // First check the certificate list. if (certs != null && (cs.certs == null || !certs.containsAll(cs.certs))) { return false; } // Next check the location. if (location == null) { return true; } if (cs.lo... | public boolean implies(CodeSource cs) { if (cs == null) return false; // First check the certificate list. if (certs != null && (cs.certs == null || ! certs.containsAll(cs.certs))) return false; // Next check the location. if (location == null) { return true; } if (cs.locat... | 15,592 |
public boolean implies(CodeSource cs) { if (cs == null) return false; // First check the certificate list. if (certs != null && (cs.certs == null || !certs.containsAll(cs.certs))) { return false; } // Next check the location. if (location == null) { return true; } if (cs.lo... | public boolean implies(CodeSource cs) { if (cs == null) return false; // First check the certificate list. if (certs != null && (cs.certs == null || !certs.containsAll(cs.certs))) { return false; } // Next check the location. if (location == null) { return true; } if (cs.lo... | 15,593 |
public boolean implies(CodeSource cs) { if (cs == null) return false; // First check the certificate list. if (certs != null && (cs.certs == null || !certs.containsAll(cs.certs))) { return false; } // Next check the location. if (location == null) { return true; } if (cs.lo... | public boolean implies(CodeSource cs) { if (cs == null) return false; // First check the certificate list. if (certs != null && (cs.certs == null || !certs.containsAll(cs.certs))) { return false; } // Next check the location. if (location == null) { return true; } if (cs.lo... | 15,594 |
public boolean implies(CodeSource cs) { if (cs == null) return false; // First check the certificate list. if (certs != null && (cs.certs == null || !certs.containsAll(cs.certs))) { return false; } // Next check the location. if (location == null) { return true; } if (cs.lo... | public boolean implies(CodeSource cs) { if (cs == null) return false; // First check the certificate list. if (certs != null && (cs.certs == null || !certs.containsAll(cs.certs))) { return false; } // Next check the location. if (location == null) { return true; } if (cs.lo... | 15,595 |
private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException { s.defaultReadObject(); int count = s.readInt(); certs = new HashSet(); while (--count >= 0) { String type = (String) s.readObject(); int bytes = s.readInt(); ... | private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException { s.defaultReadObject(); int count = s.readInt(); certs = new HashSet(); while (--count >= 0) { String type = (String) s.readObject(); int bytes = s.readInt(); ... | 15,596 |
private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException { s.defaultReadObject(); int count = s.readInt(); certs = new HashSet(); while (--count >= 0) { String type = (String) s.readObject(); int bytes = s.readInt(); ... | private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException { s.defaultReadObject(); int count = s.readInt(); certs = new HashSet(); while (--count >= 0) { String type = (String) s.readObject(); int bytes = s.readInt(); ... | 15,597 |
private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException { s.defaultReadObject(); int count = s.readInt(); certs = new HashSet(); while (--count >= 0) { String type = (String) s.readObject(); int bytes = s.readInt(); ... | private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException { s.defaultReadObject(); int count = s.readInt(); certs = new HashSet(); while (--count >= 0) { String type = (String) s.readObject(); int bytes = s.readInt(); ... | 15,598 |
private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException { s.defaultReadObject(); int count = s.readInt(); certs = new HashSet(); while (--count >= 0) { String type = (String) s.readObject(); int bytes = s.readInt(); ... | private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException { s.defaultReadObject(); int count = s.readInt(); certs = new HashSet(); while (--count >= 0) { String type = (String) s.readObject(); int bytes = s.readInt(); ... | 15,599 |
private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException { s.defaultReadObject(); int count = s.readInt(); certs = new HashSet(); while (--count >= 0) { String type = (String) s.readObject(); int bytes = s.readInt(); ... | private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException { s.defaultReadObject(); int count = s.readInt(); certs = new HashSet(); while (--count >= 0) { String type = (String) s.readObject(); int bytes = s.readInt(); ... | 15,600 |
private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException { s.defaultReadObject(); int count = s.readInt(); certs = new HashSet(); while (--count >= 0) { String type = (String) s.readObject(); int bytes = s.readInt(); ... | private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException { s.defaultReadObject(); int count = s.readInt(); certs = new HashSet(); while (--count >= 0) { String type = (String) s.readObject(); int bytes = s.readInt(); ... | 15,601 |
public String toString() { StringBuffer sb = new StringBuffer("(").append(location); if (certs == null || certs.isEmpty()) sb.append(" <no certificates>"); else { Iterator iter = certs.iterator(); for (int i = certs.size(); --i >= 0;) sb.append(' ... | public String toString() { StringBuffer sb = new StringBuffer("(").append(location); if (certs == null || certs.isEmpty()) sb.append(" <no certificates>"); else { Iterator iter = certs.iterator(); for (int i = certs.size(); --i >= 0;) sb.append(' ... | 15,602 |
public String toString() { StringBuffer sb = new StringBuffer("(").append(location); if (certs == null || certs.isEmpty()) sb.append(" <no certificates>"); else { Iterator iter = certs.iterator(); for (int i = certs.size(); --i >= 0;) sb.append(' ... | public String toString() { StringBuffer sb = new StringBuffer("(").append(location); if (certs == null || certs.isEmpty()) sb.append(" <no certificates>"); else { Iterator iter = certs.iterator(); for (int i = certs.size(); --i >= 0;) sb.append(' ... | 15,603 |
public String toString() { StringBuffer sb = new StringBuffer("(").append(location); if (certs == null || certs.isEmpty()) sb.append(" <no certificates>"); else { Iterator iter = certs.iterator(); for (int i = certs.size(); --i >= 0;) sb.append(' ... | public String toString() { StringBuffer sb = new StringBuffer("(").append(location); if (certs == null || certs.isEmpty()) sb.append(" <no certificates>"); else { Iterator iter = certs.iterator(); for (int i = certs.size(); --i >= 0; ) sb.append('... | 15,604 |
private void writeObject(ObjectOutputStream s) throws IOException { s.defaultWriteObject(); if (certs == null) s.writeInt(0); else { int count = certs.size(); s.writeInt(count); Iterator iter = certs.iterator(); while (--count >= 0) { ... | private void writeObject(ObjectOutputStream s) throws IOException { s.defaultWriteObject(); if (certs == null) s.writeInt(0); else { int count = certs.size(); s.writeInt(count); Iterator iter = certs.iterator(); while (--count >= 0) { ... | 15,605 |
private void writeObject(ObjectOutputStream s) throws IOException { s.defaultWriteObject(); if (certs == null) s.writeInt(0); else { int count = certs.size(); s.writeInt(count); Iterator iter = certs.iterator(); while (--count >= 0) { ... | private void writeObject(ObjectOutputStream s) throws IOException { s.defaultWriteObject(); if (certs == null) s.writeInt(0); else { int count = certs.size(); s.writeInt(count); Iterator iter = certs.iterator(); while (--count >= 0) { ... | 15,606 |
private void writeObject(ObjectOutputStream s) throws IOException { s.defaultWriteObject(); if (certs == null) s.writeInt(0); else { int count = certs.size(); s.writeInt(count); Iterator iter = certs.iterator(); while (--count >= 0) { ... | private void writeObject(ObjectOutputStream s) throws IOException { s.defaultWriteObject(); if (certs == null) s.writeInt(0); else { int count = certs.size(); s.writeInt(count); Iterator iter = certs.iterator(); while (--count >= 0) { ... | 15,607 |
private void writeObject(ObjectOutputStream s) throws IOException { s.defaultWriteObject(); if (certs == null) s.writeInt(0); else { int count = certs.size(); s.writeInt(count); Iterator iter = certs.iterator(); while (--count >= 0) { ... | private void writeObject(ObjectOutputStream s) throws IOException { s.defaultWriteObject(); if (certs == null) s.writeInt(0); else { int count = certs.size(); s.writeInt(count); Iterator iter = certs.iterator(); while (--count >= 0) { ... | 15,608 |
private void writeObject(ObjectOutputStream s) throws IOException { s.defaultWriteObject(); if (certs == null) s.writeInt(0); else { int count = certs.size(); s.writeInt(count); Iterator iter = certs.iterator(); while (--count >= 0) { ... | private void writeObject(ObjectOutputStream s) throws IOException { s.defaultWriteObject(); if (certs == null) s.writeInt(0); else { int count = certs.size(); s.writeInt(count); Iterator iter = certs.iterator(); while (--count >= 0) { ... | 15,609 |
private void writeObject(ObjectOutputStream s) throws IOException { s.defaultWriteObject(); if (certs == null) s.writeInt(0); else { int count = certs.size(); s.writeInt(count); Iterator iter = certs.iterator(); while (--count >= 0) { ... | private void writeObject(ObjectOutputStream s) throws IOException { s.defaultWriteObject(); if (certs == null) s.writeInt(0); else { int count = certs.size(); s.writeInt(count); Iterator iter = certs.iterator(); while (--count >= 0) { ... | 15,610 |
private void writeObject(ObjectOutputStream s) throws IOException { s.defaultWriteObject(); if (certs == null) s.writeInt(0); else { int count = certs.size(); s.writeInt(count); Iterator iter = certs.iterator(); while (--count >= 0) { ... | private void writeObject(ObjectOutputStream s) throws IOException { s.defaultWriteObject(); if (certs == null) s.writeInt(0); else { int count = certs.size(); s.writeInt(count); Iterator iter = certs.iterator(); while (--count >= 0) { ... | 15,611 |
public boolean equals(Object obj) { if (obj == null || !(obj instanceof URL)) return false; URL uObj = (URL) obj; return handler.equals(this, uObj); } | public boolean equals(Object obj) { if (obj == null || !(obj instanceof URL)) return false; URL uObj = (URL) obj; return handler.equals(this, uObj); } | 15,612 |
public boolean equals(Object obj) { if (obj == null || !(obj instanceof URL)) return false; URL uObj = (URL) obj; return handler.equals(this, uObj); } | public boolean equals(Object obj) { if (obj == null || !(obj instanceof URL)) return false; URL uObj = (URL) obj; return handler.equals(this, uObj); } | 15,613 |
public int hashCode() { if (hashCode != 0) return hashCode; // Use cached value if available. else return handler.hashCode(this); } | public int hashCode() { if (hashCode != 0) return hashCode; // Use cached value if available. else return handler.hashCode(this); } | 15,614 |
public int hashCode() { if (hashCode != 0) return hashCode; // Use cached value if available. else return handler.hashCode(this); } | public int hashCode() { if (hashCode != 0) return hashCode; // Use cached value if available. else return ph.hashCode(this); } | 15,615 |
public String getRef() { return ref; } | public String getRef() { return ref; } | 15,616 |
public boolean implies(Permission perm) { SocketPermission p; // First make sure we are the right object type if (perm instanceof SocketPermission) p = (SocketPermission) perm; else return false; // Next check the actions String ourlist = getActions(); String theirlist = ... | public boolean implies(Permission perm) { SocketPermission p; // First make sure we are the right object type if (perm instanceof SocketPermission) p = (SocketPermission) perm; else return false; // Next check the actions String ourlist = getActions(); String theirlist = ... | 15,617 |
public boolean implies(Permission perm) { SocketPermission p; // First make sure we are the right object type if (perm instanceof SocketPermission) p = (SocketPermission) perm; else return false; // Next check the actions String ourlist = getActions(); String theirlist = ... | public boolean implies(Permission perm) { SocketPermission p; // First make sure we are the right object type if (perm instanceof SocketPermission) p = (SocketPermission) perm; else return false; // Next check the actions String ourlist = getActions(); String theirlist = ... | 15,618 |
public boolean implies(Permission perm) { SocketPermission p; // First make sure we are the right object type if (perm instanceof SocketPermission) p = (SocketPermission) perm; else return false; // Next check the actions String ourlist = getActions(); String theirlist = ... | public boolean implies(Permission perm) { SocketPermission p; // First make sure we are the right object type if (perm instanceof SocketPermission) p = (SocketPermission) perm; else return false; // Next check the actions String ourlist = getActions(); String theirlist = ... | 15,619 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.