bugged stringlengths 6 599k | fixed stringlengths 6 40.8M | __index_level_0__ int64 0 3.24M |
|---|---|---|
setTitle(String title){ // A null title is equivalent to an empty title this.title = (title != null) ? title : ""; if (peer != null) { DialogPeer d = (DialogPeer) peer; d.setTitle (title); }} | setTitle(String title){ // A null title is equivalent to an empty title this.title = (title != null) ? title : ""; if (peer != null) { DialogPeer d = (DialogPeer) peer; d.setTitle (title); }} | 25,781 |
public void setMnemonic(int mne) { int old = mne; getModel().setMnemonic(mne); if (old != getModel().getMnemonic()) { firePropertyChange(MNEMONIC_CHANGED_PROPERTY, old, mne); revalidate(); repaint(); } } | public void setMnemonic(char mne) { int old = mne; getModel().setMnemonic(mne); if (old != getModel().getMnemonic()) { firePropertyChange(MNEMONIC_CHANGED_PROPERTY, old, mne); revalidate(); repaint(); } } | 25,782 |
public void setMnemonic(int mne) { int old = mne; getModel().setMnemonic(mne); if (old != getModel().getMnemonic()) { firePropertyChange(MNEMONIC_CHANGED_PROPERTY, old, mne); revalidate(); repaint(); } } | public void setMnemonic(int mne) { int old = getModel().getMnemonic(); getModel().setMnemonic(mne); if (old != getModel().getMnemonic()) { firePropertyChange(MNEMONIC_CHANGED_PROPERTY, old, mne); revalidate(); repaint(); } } | 25,783 |
public void setMnemonic(int mne) { int old = mne; getModel().setMnemonic(mne); if (old != getModel().getMnemonic()) { firePropertyChange(MNEMONIC_CHANGED_PROPERTY, old, mne); revalidate(); repaint(); } } | public void setMnemonic(int mne) { int old = mne; getModel().setMnemonic(mne); if (old != getModel().getMnemonic()) { firePropertyChange(MNEMONIC_CHANGED_PROPERTY, old, (int) mne); revalidate(); repaint(); } } | 25,784 |
public GridLayout (int rows, int cols) { this (rows, cols, 0, 0); } | public GridLayout () { this (rows, cols, 0, 0); } | 25,785 |
public GridLayout (int rows, int cols) { this (rows, cols, 0, 0); } | public GridLayout (int rows, int cols) { this (1, 0, 0, 0); } | 25,786 |
public JButton(Action a) { this(); setAction(a); } | public JButton() { this(); setAction(a); } | 25,787 |
public JButton(Action a) { this(); setAction(a); } | public JButton(Action a) { this(); setAction(a); } | 25,788 |
public void setIcon(Icon i) { Icon old = default_icon; default_icon = i; if (old != i) { firePropertyChange(ICON_CHANGED_PROPERTY, old, i); revalidate(); repaint(); } } | public void setIcon(Icon i) { Icon old = default_icon; default_icon = i; if (old != i) { firePropertyChange(ICON_CHANGED_PROPERTY, old, i); revalidate(); repaint(); } } | 25,789 |
public ButtonGroup() {} | public ButtonGroup() {} | 25,790 |
public void add(AbstractButton b) { b.getModel().setGroup(this); v.addElement(b); } | public void add(AbstractButton b) { b.getModel().setGroup(this); buttons.addElement(b); } | 25,791 |
public JScrollPane(Component view) { this(view, VERTICAL_SCROLLBAR_AS_NEEDED, HORIZONTAL_SCROLLBAR_AS_NEEDED); } | public JScrollPane() { this(view, VERTICAL_SCROLLBAR_AS_NEEDED, HORIZONTAL_SCROLLBAR_AS_NEEDED); } | 25,792 |
public JScrollPane(Component view) { this(view, VERTICAL_SCROLLBAR_AS_NEEDED, HORIZONTAL_SCROLLBAR_AS_NEEDED); } | public JScrollPane(Component view) { this(view, VERTICAL_SCROLLBAR_AS_NEEDED, HORIZONTAL_SCROLLBAR_AS_NEEDED); } | 25,793 |
public PropertyChangeListener createPropertyChangeListener(JFileChooser fc) { return new PropertyChangeListener() { public void propertyChange(PropertyChangeEvent e) { // FIXME: Multiple file selection waiting on JList multiple selection bug. if (e.getPropertyName().equals(JFileChooser.SELECTED_FILE_CHAN... | publicPropertyChangeListenercreatePropertyChangeListener(JFileChooserfc){returnnewPropertyChangeListener(){ publicvoidpropertyChange(PropertyChangeEvente) { //FIXME:MultiplefileselectionwaitingonJListmultipleselectionbug. if(e.getPropertyName().equals(JFileChooser.SELECTED_FILE_CHANGED_PROPERTY)) { if(filechooser.getSe... | 25,794 |
public String toString() { return super.toString() + "; name=" + name + "; isSource=" + isSource; } | public final String toString() { return super.toString() + "; name=" + name + "; isSource=" + isSource; } | 25,796 |
public static SystemException createSystemException(String idl, int minor, CompletionStatus completed ) { try { String cl = toClassName(JAVA_PREFIX, idl); Class exClass = Class.forName(cl); ... | public static SystemException createSystemException(String idl, int minor, CompletionStatus completed ) { try { String cl = toClassName(JAVA_PREFIX, idl); Class exClass = Class.forName(cl); ... | 25,797 |
public static SystemException createSystemException(String idl, int minor, CompletionStatus completed ) { try { String cl = toClassName(JAVA_PREFIX, idl); Class exClass = Class.forName(cl); ... | public static SystemException createSystemException(String idl, int minor, CompletionStatus completed ) { try { String cl = toClassName(JAVA_PREFIX, idl); Class exClass = Class.forName(cl); ... | 25,798 |
public static UserException readUserException(String idl, InputStream input) { try { String helper = toHelperName(idl); Class helperClass = Class.forName(helper); Method read = helperClass.getMethod("read", new Class[] ... | public static UserException readUserException(String idl, InputStream input) { try { String helper = toHelperName(idl); Class helperClass = Class.forName(helper); Method read = helperClass.getMethod("read", new Class[] ... | 25,799 |
public static String toIDL(String cn) { if (cn.startsWith(JAVA_PREFIX)) cn = OMG_PREFIX + cn.substring(JAVA_PREFIX.length()).replace('.', '/'); else if (cn.startsWith(CLASSPATH_PREFIX)) cn = OMG_PREFIX + cn.substring(CLASSPATH_PREFIX.length()).replace('.', '/'); return "IDL:" + cn + ":1.0";... | public static String toIDL(String cn) { if (cn.startsWith(JAVA_PREFIX)) cn = OMG_PREFIX + cn.substring(JAVA_PREFIX.length()).replace('.', '/'); else if (cn.startsWith(CLASSPATH_PREFIX)) cn = OMG_PREFIX + cn.substring(CLASSPATH_PREFIX.length()).replace('.', '/'); return "IDL:" + cn + ":1.0";... | 25,800 |
public UNKNOWN(String reason, int minor, CompletionStatus completed) { super(reason, minor, completed); } | public UNKNOWN(String message) { super(reason, minor, completed); } | 25,801 |
public UNKNOWN(String reason, int minor, CompletionStatus completed) { super(reason, minor, completed); } | public UNKNOWN(String reason, int minor, CompletionStatus completed) { super(message, 0, CompletionStatus.COMPLETED_NO); } | 25,802 |
AbstractButton(String txt, Icon icon) { text = txt; default_icon = icon; model = new DefaultButtonModel(); actionListener = createActionListener(); changeListener = createChangeListener(); itemListener = createItemListener(); model.addActionListener(actionListener); model.addChangeListener(ch... | public AbstractButton() { text = txt; default_icon = icon; model = new DefaultButtonModel(); actionListener = createActionListener(); changeListener = createChangeListener(); itemListener = createItemListener(); model.addActionListener(actionListener); model.addChangeListener(changeListener);... | 25,804 |
AbstractButton(String txt, Icon icon) { text = txt; default_icon = icon; model = new DefaultButtonModel(); actionListener = createActionListener(); changeListener = createChangeListener(); itemListener = createItemListener(); model.addActionListener(actionListener); model.addChangeListener(ch... | AbstractButton(String txt, Icon icon) { text = txt; default_icon = icon; model = new DefaultButtonModel(); actionListener = createActionListener(); changeListener = createChangeListener(); itemListener = createItemListener(); model.addActionListener(actionListener); model.addChangeListener(ch... | 25,805 |
public void setAction(Action a) { if (action != null) { action.removePropertyChangeListener(actionPropertyChangeListener); removeActionListener(action); if (actionPropertyChangeListener != null) { action.removePropertyChangeListener(actionPropertyChangeListener); ... | public void setAction(Action a) { if (action != null) { action.removePropertyChangeListener(actionPropertyChangeListener); removeActionListener(action); if (actionPropertyChangeListener != null) { action.removePropertyChangeListener(actionPropertyChangeListener); ... | 25,806 |
public void setAction(Action a) { if (action != null) { action.removePropertyChangeListener(actionPropertyChangeListener); removeActionListener(action); if (actionPropertyChangeListener != null) { action.removePropertyChangeListener(actionPropertyChangeListener); ... | publicvoidsetAction(Actiona){if(action!=null){action.removePropertyChangeListener(actionPropertyChangeListener);removeActionListener(action);if(actionPropertyChangeListener!=null){action.removePropertyChangeListener(actionPropertyChangeListener);actionPropertyChangeListener=null;}actionPropertyChangeListener=createActi... | 25,807 |
protected PropertyChangeListener createActionPropertyChangeListener(Action a) { return new PropertyChangeListener() { public void propertyChange(PropertyChangeEvent e) { Action act = (Action)(e.getSource()); AbstractButton.this.configurePropertiesFromAction(act); } ... | protected PropertyChangeListener createActionPropertyChangeListener(Action a) { return new PropertyChangeListener() { public void propertyChange(PropertyChangeEvent e) { Action act = (Action)(e.getSource()); AbstractButton.this.configurePropertiesFromAction(act); } ... | 25,810 |
public DefaultButtonModel() { stateMask = ENABLED; mnemonic = java.awt.event.KeyEvent.VK_UNDEFINED; listenerList = new EventListenerList(); changeEvent = new ChangeEvent(this); } | public DefaultButtonModel() { stateMask = ENABLED; mnemonic = java.awt.event.KeyEvent.VK_UNDEFINED; listenerList = new EventListenerList(); changeEvent = new ChangeEvent(this); } | 25,811 |
void addChangeListener(ChangeListener l); | void addChangeListener(ChangeListener l); | 25,812 |
void removeChangeListener(ChangeListener l); | void removeChangeListener(ChangeListener l); | 25,813 |
public SimpleAttributeSet(AttributeSet a) { tab = new Hashtable(); addAttributes(a); } | public SimpleAttributeSet() { tab = new Hashtable(); addAttributes(a); } | 25,814 |
public SimpleAttributeSet(AttributeSet a) { tab = new Hashtable(); addAttributes(a); } | public SimpleAttributeSet(AttributeSet a) { tab = new Hashtable(); addAttributes(a); } | 25,815 |
public Enumeration<K> keys() { return new Enumerator<K>(KEYS); } | public Enumeration<K> keys() { return new KeyEnumerator(); } | 25,817 |
public Dimension getPreferredSize(JComponent c) { TableColumnModel cmod = header.getColumnModel(); TableCellRenderer defaultRend = header.getDefaultRenderer(); int ncols = cmod.getColumnCount(); Dimension ret = new Dimension(0,0); int spacing = 0; if (header.getTable() != null && header... | public Dimension getPreferredSize(JComponent c) { TableColumnModel cmod = header.getColumnModel(); TableCellRenderer defaultRend = header.getDefaultRenderer(); int ncols = cmod.getColumnCount(); Dimension ret = new Dimension(0,0); int spacing = 0; if (header.getTable() != null && header... | 25,818 |
public boolean intersects(Rectangle r) { return width > 0 && height > 0 && r.width > 0 && r.height > 0 && r.x < x + width && r.x + r.width > x && r.y < y + height && r.y + r.height > y; } | public boolean intersects(Rectangle r) { return width > 0 && height > 0 && r.width > 0 && r.height > 0 && r.x < x + width && r.x + r.width > x && r.y < y + height && r.y + r.height > y; } | 25,821 |
public Rectangle getBoundingBox() { return getBounds(); } | public Rectangle getBoundingBox() { if (bounds == null) { if (npoints == 0) return bounds = new Rectangle (); int i = npoints - 1; int minx = xpoints[i]; int maxx = minx; int miny = ypoints[i]; int maxy = miny; while (--i >= 0) { int x = xpoints[i]; int y = ypoints[i]; if (x < minx) minx = x; else if (x > maxx) m... | 25,822 |
public Rectangle getBounds() { if (bounds == null) { if (npoints == 0) return bounds = new Rectangle(); int i = npoints - 1; int minx = xpoints[i]; int maxx = minx; int miny = ypoints[i]; int maxy = miny; while (--i >= 0) { int x =... | public Rectangle getBounds() { if (bounds == null) { if (npoints == 0) return bounds = new Rectangle(); int i = npoints - 1; int minx = xpoints[i]; int maxx = minx; int miny = ypoints[i]; int maxy = miny; while (--i >= 0) { int x =... | 25,823 |
public void translate(int dx, int dy) { int i = npoints; while (--i >= 0) { xpoints[i] += dx; xpoints[i] += dy; } if (bounds != null) { bounds.x += dx; bounds.y += dy; } condensed = null; } | public void translate(int dx, int dy) { int i = npoints; while (--i >= 0) { xpoints[i] += dx; ypoints[i] += dy; } if (bounds != null) { bounds.x += dx; bounds.y += dy; } condensed = null; } | 25,824 |
public void transform(float[] srcPts, int srcOff, float[] dstPts, int dstOff, int num) { if (srcPts == dstPts && dstOff > srcOff && num > 1 && srcOff + 2 * num > dstOff) { float[] f = new float[2 * num]; System.arraycopy(srcPts, srcOff, f, 0, 2 * num); srcPts = f; } wh... | public void transform(float[] srcPts, int srcOff, float[] dstPts, int dstOff, int num) { if (srcPts == dstPts && dstOff > srcOff && num > 1 && srcOff + 2 * num > dstOff) { float[] f = new float[2 * num]; System.arraycopy(srcPts, srcOff, f, 0, 2 * num); srcPts = f; } wh... | 25,825 |
public void transform(float[] srcPts, int srcOff, float[] dstPts, int dstOff, int num) { if (srcPts == dstPts && dstOff > srcOff && num > 1 && srcOff + 2 * num > dstOff) { float[] f = new float[2 * num]; System.arraycopy(srcPts, srcOff, f, 0, 2 * num); srcPts = f; } wh... | public void transform(float[] srcPts, int srcOff, float[] dstPts, int dstOff, int num) { if (srcPts == dstPts && dstOff > srcOff && num > 1 && srcOff + 2 * num > dstOff) { float[] f = new float[2 * num]; System.arraycopy(srcPts, srcOff, f, 0, 2 * num); srcPts = f; } wh... | 25,826 |
public Component getListCellRendererComponent(JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) { String s = value.toString(); // String maybe larger than comboBox. FontMetrics fm =... | public Component getListCellRendererComponent(JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) { String s = value.toString(); // String maybe larger than comboBox. FontMetrics fm =... | 25,827 |
public Component getListCellRendererComponent(JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) { String s = value.toString(); // String maybe larger than comboBox. FontMetrics fm =... | public Component getListCellRendererComponent(JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) { String s = value.toString(); // String maybe larger than comboBox. FontMetrics fm =... | 25,828 |
public void setBounds(int x, int y, int width, int height) { this.x = x; this.y = y; this.width = width; this.height = height; } | public void setBounds(int x, int y, int width, int height) { this.x = x; this.y = y; this.width = width; this.height = height; } | 25,829 |
public double getX() { return x; } | public double getX() { return x; } | 25,830 |
public double getY() { return y; } | public double getY() { return y; } | 25,831 |
public double getWidth() { return width; } | public double getWidth() { return width; } | 25,832 |
public double getHeight() { return height; } | public double getHeight() { return height; } | 25,833 |
public MouseEvent(Component source, int id, long when, int modifiers, int x, int y, int clickCount, boolean popupTrigger, int button) { super(source, id, when, modifiers); this.x = x; this.y = y; this.clickCount = clickCount; this.popupTrigger = popupTrigger; t... | public MouseEvent(Component source, int id, long when, int modifiers, int x, int y, int clickCount, boolean popupTrigger, int button) { super(source, id, when, modifiers); this.x = x; this.y = y; this.clickCount = clickCount; this.popupTrigger = popupTrigger; t... | 25,834 |
public MouseEvent(Component source, int id, long when, int modifiers, int x, int y, int clickCount, boolean popupTrigger, int button) { super(source, id, when, modifiers); this.x = x; this.y = y; this.clickCount = clickCount; this.popupTrigger = popupTrigger; t... | public MouseEvent(Component source, int id, long when, int modifiers, int x, int y, int clickCount, boolean popupTrigger, int button) { super(source, id, when, modifiers); this.x = x; this.y = y; this.clickCount = clickCount; this.popupTrigger = popupTrigger; t... | 25,835 |
public MouseEvent(Component source, int id, long when, int modifiers, int x, int y, int clickCount, boolean popupTrigger, int button) { super(source, id, when, modifiers); this.x = x; this.y = y; this.clickCount = clickCount; this.popupTrigger = popupTrigger; t... | public MouseEvent(Component source, int id, long when, int modifiers, int x, int y, int clickCount, boolean popupTrigger, int button) { super(source, id, when, modifiers); this.x = x; this.y = y; this.clickCount = clickCount; this.popupTrigger = popupTrigger; t... | 25,836 |
public Component getFocusOwner() { // XXX Need an easy way to test if this thread is in the context of the // global focus owner, to avoid creating the exception in the first place. try { return getGlobalFocusOwner(); } catch (SecurityException e) { return null; } } | public Component getFocusOwner() { // XXX Need an easy way to test if this thread is in the context of the // global focus owner, to avoid creating the exception in the first place. try { return getGlobalFocusOwner(); } catch (SecurityException e) { return null; } } | 25,837 |
public Component getFocusOwner() { // XXX Need an easy way to test if this thread is in the context of the // global focus owner, to avoid creating the exception in the first place. try { return getGlobalFocusOwner(); } catch (SecurityException e) { return null; } } | public Component getFocusOwner() { // XXX Need an easy way to test if this thread is in the context of the // global focus owner, to avoid creating the exception in the first place. try { return getGlobalFocusOwner(); } catch (SecurityException e) { return null; } } | 25,838 |
public Rectangle union(Rectangle r) { Rectangle res = new Rectangle(); union(this, r, res); return res; } | public Rectangle union(Rectangle r) { Rectangle res = new Rectangle(); union(this, r, res); return res; } | 25,839 |
public ActionEvent(Object source, int id, String command, int modifiers) { this(source, id, command, EventQueue.getMostRecentEventTime(), modifiers); } | public ActionEvent(Object source, int id, String command) { this(source, id, command, EventQueue.getMostRecentEventTime(), modifiers); } | 25,840 |
public ActionEvent(Object source, int id, String command, int modifiers) { this(source, id, command, EventQueue.getMostRecentEventTime(), modifiers); } | public ActionEvent(Object source, int id, String command, int modifiers) { this(source, id, command, EventQueue.getMostRecentEventTime(), 0); } | 25,841 |
public UserException() { } | protected UserException() { } | 25,843 |
public DataBufferFloat(int size) { super(TYPE_FLOAT, size); data = new float[size]; } | public DataBufferFloat(int size) { super(TYPE_FLOAT, size, 1, 0); bankData = new float[1][]; data = new float[size]; } | 25,844 |
protected DataBuffer(int dataType, int size, int numBanks, int offset) { this(dataType, size, numBanks); java.util.Arrays.fill(offsets, offset); this.offset = offset; } | protected DataBuffer(int dataType, int size, int numBanks, int offset) { this(dataType, size, numBanks); java.util.Arrays.fill(offsets, offset); this.offset = offset; } | 25,846 |
public int getElem(int i) { return getElem(0, i); } | public int getElem(int i) { return getElem(0, i); } | 25,847 |
public double getElemDouble(int i) { return getElem(i); } | public double getElemDouble(int i) { return getElem(i); } | 25,848 |
public float getElemFloat(int i) { return getElem(i); } | public float getElemFloat(int i) { return getElem(i); } | 25,849 |
public void setElem(int i, int val) { setElem(0, i, val); } | public void setElem(int i, int val) { setElem(0, i, val); } | 25,850 |
public void setElemDouble(int i, double val) { setElem(i, (int) val); } | public void setElemDouble(int i, double val) { setElem(i, (int) val); } | 25,851 |
public void setElemFloat(int i, float val) { setElem(i, (int) val); } | public void setElemFloat(int i, float val) { setElem(i, (int) val); } | 25,852 |
public AssertionError(Object msg) { super("" + msg); if (msg instanceof Throwable) initCause((Throwable) msg); } | public AssertionError() { super("" + msg); if (msg instanceof Throwable) initCause((Throwable) msg); } | 25,853 |
public AssertionError(Object msg) { super("" + msg); if (msg instanceof Throwable) initCause((Throwable) msg); } | public AssertionError(Object msg) { super("" + msg); if (msg instanceof Throwable) initCause((Throwable) msg); } | 25,854 |
public UnsupportedLookAndFeelException(String a) { super(a); } | public UnsupportedLookAndFeelException(String s) { super(a); } | 25,855 |
public UnsupportedLookAndFeelException(String a) { super(a); } | public UnsupportedLookAndFeelException(String a) { super(s); } | 25,856 |
public void uninitialize() { //UIManager.setLookAndFeel calls this method just before we're replaced by a new default look and feel. } | publicvoiduninitialize(){ //UIManager.setLookAndFeelcallsthismethodjustbeforewe'rereplacedbyanewdefaultlookandfeel.} | 25,857 |
public void initialize() { //UIManager.setLookAndFeel calls this method before the first call (and typically the only call) to getDefaults(). } | publicvoidinitialize(){ //UIManager.setLookAndFeelcallsthismethodbeforethefirstcall(andtypicallytheonlycall)togetDefaults().} | 25,858 |
public UIDefaults getDefaults() { //This method is called once by UIManager.setLookAndFeel to create the look and feel specific defaults table. return null; } | publicUIDefaultsgetDefaults(){ //ThismethodiscalledoncebyUIManager.setLookAndFeeltocreatethelookandfeelspecificdefaultstable. returnnull;} | 25,859 |
public Point2D inverseTransform(Point2D src, Point2D dst) throws NoninvertibleTransformException { double det = getDeterminant(); if (det == 0) throw new NoninvertibleTransformException("couldn't invert transform"); if (dst == null) dst = new Point2D.Double(); double x = src.getX(); double y = src.getY()... | public Point2D inverseTransform(Point2D src, Point2D dst) throws NoninvertibleTransformException { double det = getDeterminant(); if (det == 0) throw new NoninvertibleTransformException("couldn't invert transform"); if (dst == null) dst = new Point2D.Double(); double x = src.getX(); double y = src.getY()... | 25,861 |
public GeneralPath(Shape s) { types = new byte[INIT_SIZE]; xpoints = new float[INIT_SIZE]; ypoints = new float[INIT_SIZE]; PathIterator pi = s.getPathIterator(null); setWindingRule(pi.getWindingRule()); append(pi, false); } | public GeneralPath() { types = new byte[INIT_SIZE]; xpoints = new float[INIT_SIZE]; ypoints = new float[INIT_SIZE]; PathIterator pi = s.getPathIterator(null); setWindingRule(pi.getWindingRule()); append(pi, false); } | 25,862 |
public GeneralPath(Shape s) { types = new byte[INIT_SIZE]; xpoints = new float[INIT_SIZE]; ypoints = new float[INIT_SIZE]; PathIterator pi = s.getPathIterator(null); setWindingRule(pi.getWindingRule()); append(pi, false); } | public GeneralPath(Shape s) { types = new byte[INIT_SIZE]; xpoints = new float[INIT_SIZE]; ypoints = new float[INIT_SIZE]; PathIterator pi = s.getPathIterator(null); setWindingRule(pi.getWindingRule()); append(pi, false); } | 25,863 |
public final Class getCategory() { return JobImpressionsCompleted.class; } | public Class getCategory() { return JobImpressionsCompleted.class; } | 25,864 |
public final String getName() { return "job-impressions"; } | public String getName() { return "job-impressions"; } | 25,865 |
public UnicastServerRef(ObjID id, int port, RMIServerSocketFactory ssf) throws RemoteException { super(id); manager = UnicastConnectionManager.getInstance(port, ssf); } | public UnicastServerRef(ObjID id, int port, RMIServerSocketFactory ssf) throws RemoteException { super(id); manager = UnicastConnectionManager.getInstance(port, ssf); } | 25,866 |
public UnicastServerRef(ObjID id, int port, RMIServerSocketFactory ssf) throws RemoteException { super(id); manager = UnicastConnectionManager.getInstance(port, ssf); } | public UnicastServerRef(ObjID id, int port, RMIServerSocketFactory ssf) throws RemoteException { super(id); manager = UnicastConnectionManager.getInstance(port, ssf); } | 25,867 |
public Remote exportObject(Remote obj) throws RemoteException { if (myself == null) { myself = obj; // Save it to server manager, to let client calls in the same VM to // issue // local call manager.serverobj = obj; String ignoreStubs; ClassLoader loader =obj.getClass(... | public Remote exportObject(Remote obj) throws RemoteException { if (myself == null) { myself = obj; // Save it to server manager, to let client calls in the same VM to // issue // local call manager.serverobj = obj; String ignoreStubs; ClassLoader loader =obj.getClass().getClassLoader(); ... | 25,868 |
public Object incomingMessageCall(UnicastConnection conn, int method, long hash) throws Exception { // System.out.println("method = " + method + ", hash = " + hash); // If method is -1 then this is JDK 1.2 RMI - so use the hash // to locate the method if (method == - 1) ... | public Object incomingMessageCall(UnicastConnection conn, int method, long hash) throws Exception { // System.out.println("method = " + method + ", hash = " + hash); // If method is -1 then this is JDK 1.2 RMI - so use the hash // to locate the method if (method == - 1) ... | 25,869 |
public Object incomingMessageCall(UnicastConnection conn, int method, long hash) throws Exception { // System.out.println("method = " + method + ", hash = " + hash); // If method is -1 then this is JDK 1.2 RMI - so use the hash // to locate the method if (method == - 1) ... | public Object incomingMessageCall(UnicastConnection conn, int method, long hash) throws Exception { // System.out.println("method = " + method + ", hash = " + hash); // If method is -1 then this is JDK 1.2 RMI - so use the hash // to locate the method if (method == - 1) ... | 25,870 |
public UnicastRef(ObjID objid) { this.objid = objid; } | public UnicastRef() { this.objid = objid; } | 25,871 |
public UnicastRef(ObjID objid) { this.objid = objid; } | public UnicastRef(ObjID objid) { } | 25,872 |
public static synchronized UnicastConnectionManager getInstance(int port, RMIServerSocketFactory ssf) throws RemoteException {//System.out.println("getInstance: " + port + "," + ssf); if (ssf == null) { ssf = defaultSocketFactory; } TripleKey key = new TripleKey(localhost, port, ssf); UnicastConnectionManager ma... | public static synchronized UnicastConnectionManager getInstance(int port, RMIServerSocketFactory ssf) throws RemoteException {//System.out.println("getInstance: " + port + "," + ssf); if (ssf == null) { ssf = defaultSocketFactory; } TripleKey key = new TripleKey(localhost, port, ssf); UnicastConnectionManager ma... | 25,873 |
public static synchronized UnicastConnectionManager getInstance(int port, RMIServerSocketFactory ssf) throws RemoteException {//System.out.println("getInstance: " + port + "," + ssf); if (ssf == null) { ssf = defaultSocketFactory; } TripleKey key = new TripleKey(localhost, port, ssf); UnicastConnectionManager ma... | public static synchronized UnicastConnectionManager getInstance(int port, RMIServerSocketFactory ssf) throws RemoteException {//System.out.println("getInstance: " + port + "," + ssf); if (ssf == null) { ssf = defaultSocketFactory; } TripleKey key = new TripleKey(localhost, port, ssf); UnicastConnectionManager ma... | 25,874 |
public static synchronized UnicastConnectionManager getInstance(int port, RMIServerSocketFactory ssf) throws RemoteException {//System.out.println("getInstance: " + port + "," + ssf); if (ssf == null) { ssf = defaultSocketFactory; } TripleKey key = new TripleKey(localhost, port, ssf); UnicastConnectionManager ma... | public static synchronized UnicastConnectionManager getInstance(int port, RMIServerSocketFactory ssf) throws RemoteException {//System.out.println("getInstance: " + port + "," + ssf); if (ssf == null) { ssf = defaultSocketFactory; } TripleKey key = new TripleKey(localhost, port, ssf); UnicastConnectionManager ma... | 25,875 |
public static synchronized UnicastConnectionManager getInstance(int port, RMIServerSocketFactory ssf) throws RemoteException {//System.out.println("getInstance: " + port + "," + ssf); if (ssf == null) { ssf = defaultSocketFactory; } TripleKey key = new TripleKey(localhost, port, ssf); UnicastConnectionManager ma... | public static synchronized UnicastConnectionManager getInstance(int port, RMIServerSocketFactory ssf) throws RemoteException {//System.out.println("getInstance: " + port + "," + ssf); if (ssf == null) { ssf = defaultSocketFactory; } TripleKey key = new TripleKey(localhost, port, ssf); UnicastConnectionManager ma... | 25,876 |
public static synchronized UnicastConnectionManager getInstance(int port, RMIServerSocketFactory ssf) throws RemoteException {//System.out.println("getInstance: " + port + "," + ssf); if (ssf == null) { ssf = defaultSocketFactory; } TripleKey key = new TripleKey(localhost, port, ssf); UnicastConnectionManager ma... | public static synchronized UnicastConnectionManager getInstance(int port, RMIServerSocketFactory ssf) throws RemoteException {//System.out.println("getInstance: " + port + "," + ssf); if (ssf == null) { ssf = defaultSocketFactory; } TripleKey key = new TripleKey(localhost, port, ssf); UnicastConnectionManager ma... | 25,877 |
public static Object newProxyInstance(ClassLoader loader, Class[] interfaces, InvocationHandler handler) { try { // getProxyClass() and Proxy() throw the necessary exceptions return getProxyClass(loader, interfa... | public static Object newProxyInstance(ClassLoader loader, Class[] interfaces, InvocationHandler handler) { try { // getProxyClass() and Proxy() throw the necessary exceptions return getProxyClass(loader, interfa... | 25,878 |
public static Object newProxyInstance(ClassLoader loader, Class[] interfaces, InvocationHandler handler) { try { // getProxyClass() and Proxy() throw the necessary exceptions return getProxyClass(loader, interfa... | public static Object newProxyInstance(ClassLoader loader, Class[] interfaces, InvocationHandler handler) { try { // getProxyClass() and Proxy() throw the necessary exceptions return getProxyClass(loader, interfa... | 25,879 |
public static Object newProxyInstance(ClassLoader loader, Class[] interfaces, InvocationHandler handler) { try { // getProxyClass() and Proxy() throw the necessary exceptions return getProxyClass(loader, interfa... | public static Object newProxyInstance(ClassLoader loader, Class[] interfaces, InvocationHandler handler) { try { // getProxyClass() and Proxy() throw the necessary exceptions return getProxyClass(loader, interfa... | 25,880 |
public static Object newProxyInstance(ClassLoader loader, Class[] interfaces, InvocationHandler handler) { try { // getProxyClass() and Proxy() throw the necessary exceptions return getProxyClass(loader, interfa... | public static Object newProxyInstance(ClassLoader loader, Class[] interfaces, InvocationHandler handler) { try { // getProxyClass() and Proxy() throw the necessary exceptions return getProxyClass(loader, interfa... | 25,881 |
public static Object newProxyInstance(ClassLoader loader, Class[] interfaces, InvocationHandler handler) { try { // getProxyClass() and Proxy() throw the necessary exceptions return getProxyClass(loader, interfa... | public static Object newProxyInstance(ClassLoader loader, Class[] interfaces, InvocationHandler handler) { try { // getProxyClass() and Proxy() throw the necessary exceptions return getProxyClass(loader, interfa... | 25,882 |
public NoSuchMethodException(String s) { super(s); } | public NoSuchMethodException() { super(s); } | 25,883 |
public NoSuchMethodException(String s) { super(s); } | public NoSuchMethodException(String s) { super(s); } | 25,884 |
public static ActionListener add(ActionListener a, ActionListener b) { return (ActionListener) addInternal(a, b); } | public static ComponentListener add(ComponentListener a, ComponentListener b) { return (ActionListener) addInternal(a, b); } | 25,886 |
public static ActionListener add(ActionListener a, ActionListener b) { return (ActionListener) addInternal(a, b); } | public static ActionListener add(ActionListener a, ActionListener b) { return (ComponentListener) addInternal(a, b); } | 25,887 |
public abstract void setEnabled(boolean enabled); | public abstract void setEnabled(boolean enabled); | 25,888 |
void actionPerformed(ActionEvent e); | void actionPerformed(ActionEvent e); | 25,889 |
public static ActionListener remove(ActionListener l, ActionListener oldl) { return (ActionListener) removeInternal(l, oldl); } | protected EventListener remove(EventListener oldl) { return (ActionListener) removeInternal(l, oldl); } | 25,890 |
public static ActionListener remove(ActionListener l, ActionListener oldl) { return (ActionListener) removeInternal(l, oldl); } | public static ActionListener remove(ActionListener l, ActionListener oldl) { if (a == oldl) return b; if (b == oldl) return a; if (a instanceof AWTEventMulticaster) { EventListener newa = ((AWTEventMulticaster) a).remove(oldl); if (newa != a) return new AWTEventMulticaster(newa, b); } if (b instanceof AWTEventM... | 25,891 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.