rem stringlengths 0 477k | add stringlengths 0 313k | context stringlengths 6 599k |
|---|---|---|
setDeadCode(true); | public Operand propagate(Variable operand) { return refs[0]; } | |
public final Class getCategory() | public Class getCategory() | public final Class getCategory() { return Media.class; } |
public final String getName() | public String getName() | public final String getName() { return "media"; } |
throws NotImplementedException | public static Object getStaticAttribute(Object key) { throw new InternalError("not implemented"); } | |
throws NotImplementedException | public static Object getStaticAttributeKey(Object key) { throw new InternalError("not implemented"); } | |
throws ClassNotFoundException, IOException | throws ClassNotFoundException, IOException, NotImplementedException | public static void readAttributeSet(ObjectInputStream in, MutableAttributeSet a) throws ClassNotFoundException, IOException { throw new InternalError("not implemented"); } |
throws ClassNotFoundException, IOException | throws ClassNotFoundException, IOException, NotImplementedException | public void readAttributes(ObjectInputStream in, MutableAttributeSet a) throws ClassNotFoundException, IOException { throw new InternalError("not implemented"); } |
throws IOException | throws IOException, NotImplementedException | public static void writeAttributeSet(ObjectOutputStream out, AttributeSet a) throws IOException { throw new InternalError("not implemented"); } |
throws IOException | throws IOException, NotImplementedException | public void writeAttributes(ObjectOutputStream out, AttributeSet a) throws IOException { throw new InternalError("not implemented"); } |
final byte[] buf = new byte[4096]; | final byte[] buf = new byte[2*4096]; | public void run() throws IOException { final byte[] buf = new byte[4096]; final DatagramPacket p = new DatagramPacket(buf, buf.length); while (true) { socket.receive(p); System.out.write(p.getData(), p.getOffset(), p.getLength()); } } |
public int checkImage(Image img, int w, int h, ImageObserver o) { System.err.println("checkImage"); return ImageObserver.ALLBITS; | public int checkImage(Image img, int width, int height, ImageObserver o) { return toolkit.checkImage(img, width, height, o); | public int checkImage(Image img, int w, int h, ImageObserver o) { System.err.println("checkImage"); return ImageObserver.ALLBITS; } |
System.err.println("createImage(producer)"); return null; | return toolkit.createImage(producer); | public Image createImage(ImageProducer producer) { System.err.println("createImage(producer)"); return null; } |
return null; | throw new RuntimeException("Not implemented"); | public VolatileImage createVolatileImage(int width, int height) { // These babies are created by hardware return null; } |
public boolean prepareImage(Image img, int w, int h, ImageObserver o) { System.err.println("prepareImage"); return true; | public boolean prepareImage(Image img, int width, int height, ImageObserver o) { return toolkit.prepareImage(img, width, height, o); | public boolean prepareImage(Image img, int w, int h, ImageObserver o) { System.err.println("prepareImage"); return true; } |
public boolean requestFocus(Component lightweightChild, boolean temporary, boolean focusedWindowChangeAllowed, long time) { return true; | public void requestFocus() { | public boolean requestFocus(Component lightweightChild, boolean temporary, boolean focusedWindowChangeAllowed, long time) { return true; } |
throws NotImplementedException | public int getGlyphCharIndex (int glyphIndex) { throw new Error ("not implemented"); } | |
throws NotImplementedException | public int[] getGlyphCharIndices (int beginGlyphIndex, int numEntries, int[] codeReturn) { throw new Error ("not implemented"); } | |
throws NotImplementedException | public Rectangle getGlyphPixelBounds (int index, FontRenderContext renderFRC, float x, float y) { throw new Error ("not implemented"); } | |
throws NotImplementedException | public Rectangle getPixelBounds (FontRenderContext renderFRC, float x, float y) { throw new Error ("not implemented"); } | |
abstract public String absolutePath(); | public abstract String absolutePath(); | abstract public String absolutePath(); |
abstract public void addNodeChangeListener(NodeChangeListener listener); | public abstract void addNodeChangeListener(NodeChangeListener listener); | abstract public void addNodeChangeListener(NodeChangeListener listener); |
abstract public void addPreferenceChangeListener | public abstract void addPreferenceChangeListener | abstract public void addPreferenceChangeListener (PreferenceChangeListener listener); |
abstract public String[] childrenNames() throws BackingStoreException; | public abstract String[] childrenNames() throws BackingStoreException; | abstract public String[] childrenNames() throws BackingStoreException; |
abstract public void clear() throws BackingStoreException; | public abstract void clear() throws BackingStoreException; | abstract public void clear() throws BackingStoreException; |
abstract public void exportNode(OutputStream os) | public abstract void exportNode(OutputStream os) | abstract public void exportNode(OutputStream os) throws BackingStoreException, IOException; |
abstract public void exportSubtree(OutputStream os) | public abstract void exportSubtree(OutputStream os) | abstract public void exportSubtree(OutputStream os) throws BackingStoreException, IOException; |
abstract public void flush() throws BackingStoreException; | public abstract void flush() throws BackingStoreException; | abstract public void flush() throws BackingStoreException; |
abstract public String get(String key, String defaultVal); | public abstract String get(String key, String defaultVal); | abstract public String get(String key, String defaultVal); |
abstract public boolean getBoolean(String key, boolean defaultVal); | public abstract boolean getBoolean(String key, boolean defaultVal); | abstract public boolean getBoolean(String key, boolean defaultVal); |
abstract public byte[] getByteArray(String key, byte[] defaultVal); | public abstract byte[] getByteArray(String key, byte[] defaultVal); | abstract public byte[] getByteArray(String key, byte[] defaultVal); |
abstract public double getDouble(String key, double defaultVal); | public abstract double getDouble(String key, double defaultVal); | abstract public double getDouble(String key, double defaultVal); |
abstract public float getFloat(String key, float defaultVal); | public abstract float getFloat(String key, float defaultVal); | abstract public float getFloat(String key, float defaultVal); |
abstract public int getInt(String key, int defaultVal); | public abstract int getInt(String key, int defaultVal); | abstract public int getInt(String key, int defaultVal); |
abstract public long getLong(String key, long defaultVal); | public abstract long getLong(String key, long defaultVal); | abstract public long getLong(String key, long defaultVal); |
abstract public boolean isUserNode(); | public abstract boolean isUserNode(); | abstract public boolean isUserNode(); |
abstract public String[] keys() throws BackingStoreException; | public abstract String[] keys() throws BackingStoreException; | abstract public String[] keys() throws BackingStoreException; |
abstract public String name(); | public abstract String name(); | abstract public String name(); |
abstract public Preferences node(String path); | public abstract Preferences node(String path); | abstract public Preferences node(String path); |
abstract public boolean nodeExists(String path) | public abstract boolean nodeExists(String path) | abstract public boolean nodeExists(String path) throws BackingStoreException; |
abstract public Preferences parent(); | public abstract Preferences parent(); | abstract public Preferences parent(); |
abstract public void put(String key, String value); | public abstract void put(String key, String value); | abstract public void put(String key, String value); |
abstract public void putBoolean(String key, boolean value); | public abstract void putBoolean(String key, boolean value); | abstract public void putBoolean(String key, boolean value); |
abstract public void putByteArray(String key, byte[] value); | public abstract void putByteArray(String key, byte[] value); | abstract public void putByteArray(String key, byte[] value); |
abstract public void putDouble(String key, double value); | public abstract void putDouble(String key, double value); | abstract public void putDouble(String key, double value); |
abstract public void putFloat(String key, float value); | public abstract void putFloat(String key, float value); | abstract public void putFloat(String key, float value); |
abstract public void putInt(String key, int value); | public abstract void putInt(String key, int value); | abstract public void putInt(String key, int value); |
abstract public void putLong(String key, long value); | public abstract void putLong(String key, long value); | abstract public void putLong(String key, long value); |
abstract public void remove(String key); | public abstract void remove(String key); | abstract public void remove(String key); |
abstract public void removeNode() throws BackingStoreException; | public abstract void removeNode() throws BackingStoreException; | abstract public void removeNode() throws BackingStoreException; |
abstract public void removeNodeChangeListener(NodeChangeListener listener); | public abstract void removeNodeChangeListener(NodeChangeListener listener); | abstract public void removeNodeChangeListener(NodeChangeListener listener); |
abstract public void removePreferenceChangeListener | public abstract void removePreferenceChangeListener | abstract public void removePreferenceChangeListener (PreferenceChangeListener listener); |
abstract public void sync() throws BackingStoreException; | public abstract void sync() throws BackingStoreException; | abstract public void sync() throws BackingStoreException; |
abstract public String toString(); | public abstract String toString(); | abstract public String toString(); |
{ | private byte[] MGF(byte[] Z, int l) { // 1. If l > (2**32).hLen, output 'mask too long' and stop. if (l < 1 || (l & 0xFFFFFFFFL) > ((hLen & 0xFFFFFFFFL) << 32L)) { throw new IllegalArgumentException("mask too long"); } // 2. Let T be the empty octet string. byte[] result = new byte[l]; ... | |
} | private byte[] MGF(byte[] Z, int l) { // 1. If l > (2**32).hLen, output 'mask too long' and stop. if (l < 1 || (l & 0xFFFFFFFFL) > ((hLen & 0xFFFFFFFFL) << 32L)) { throw new IllegalArgumentException("mask too long"); } // 2. Let T be the empty octet string. byte[] result = new byte[l]; ... | |
if (DEBUG && debuglevel > 8) | if (Configuration.DEBUG) | public boolean decode(byte[] mHash, byte[] EM, int emBits, int sLen) { if (DEBUG && debuglevel > 8) { debug("mHash: " + Util.toString(mHash)); debug("EM: " + Util.toString(EM)); debug("emBits: " + String.valueOf(emBits)); debug("sLen: " + String.valueOf(sLen)); } if (sLen ... |
debug("mHash: " + Util.toString(mHash)); debug("EM: " + Util.toString(EM)); debug("emBits: " + String.valueOf(emBits)); debug("sLen: " + String.valueOf(sLen)); | log.fine("mHash: " + Util.toString(mHash)); log.fine("EM: " + Util.toString(EM)); log.fine("emBits: " + String.valueOf(emBits)); log.fine("sLen: " + String.valueOf(sLen)); | public boolean decode(byte[] mHash, byte[] EM, int emBits, int sLen) { if (DEBUG && debuglevel > 8) { debug("mHash: " + Util.toString(mHash)); debug("EM: " + Util.toString(EM)); debug("emBits: " + String.valueOf(emBits)); debug("sLen: " + String.valueOf(sLen)); } if (sLen ... |
{ | public boolean decode(byte[] mHash, byte[] EM, int emBits, int sLen) { if (DEBUG && debuglevel > 8) { debug("mHash: " + Util.toString(mHash)); debug("EM: " + Util.toString(EM)); debug("emBits: " + String.valueOf(emBits)); debug("sLen: " + String.valueOf(sLen)); } if (sLen ... | |
} | public boolean decode(byte[] mHash, byte[] EM, int emBits, int sLen) { if (DEBUG && debuglevel > 8) { debug("mHash: " + Util.toString(mHash)); debug("EM: " + Util.toString(EM)); debug("emBits: " + String.valueOf(emBits)); debug("sLen: " + String.valueOf(sLen)); } if (sLen ... | |
if (DEBUG && debuglevel > 8) { debug("hLen != mHash.length; hLen: " + String.valueOf(hLen)); } | if (Configuration.DEBUG) log.fine("hLen != mHash.length; hLen: " + String.valueOf(hLen)); | public boolean decode(byte[] mHash, byte[] EM, int emBits, int sLen) { if (DEBUG && debuglevel > 8) { debug("mHash: " + Util.toString(mHash)); debug("EM: " + Util.toString(EM)); debug("emBits: " + String.valueOf(emBits)); debug("sLen: " + String.valueOf(sLen)); } if (sLen ... |
if (DEBUG && debuglevel > 8) { debug("emBits < (8hLen + 8sLen + 9); sLen: " + String.valueOf(sLen)); } | if (Configuration.DEBUG) log.fine("emBits < (8hLen + 8sLen + 9); sLen: " + String.valueOf(sLen)); | public boolean decode(byte[] mHash, byte[] EM, int emBits, int sLen) { if (DEBUG && debuglevel > 8) { debug("mHash: " + Util.toString(mHash)); debug("EM: " + Util.toString(EM)); debug("emBits: " + String.valueOf(emBits)); debug("sLen: " + String.valueOf(sLen)); } if (sLen ... |
if (DEBUG && debuglevel > 8) { debug("EM does not end with 0xBC"); } | if (Configuration.DEBUG) log.fine("EM does not end with 0xBC"); | public boolean decode(byte[] mHash, byte[] EM, int emBits, int sLen) { if (DEBUG && debuglevel > 8) { debug("mHash: " + Util.toString(mHash)); debug("EM: " + Util.toString(EM)); debug("emBits: " + String.valueOf(emBits)); debug("sLen: " + String.valueOf(sLen)); } if (sLen ... |
if (DEBUG && debuglevel > 8) { debug("Leftmost 8emLen - emBits bits of EM are not 0s"); } | if (Configuration.DEBUG) log.fine("Leftmost 8emLen - emBits bits of EM are not 0s"); | public boolean decode(byte[] mHash, byte[] EM, int emBits, int sLen) { if (DEBUG && debuglevel > 8) { debug("mHash: " + Util.toString(mHash)); debug("EM: " + Util.toString(EM)); debug("emBits: " + String.valueOf(emBits)); debug("sLen: " + String.valueOf(sLen)); } if (sLen ... |
{ DB[i] = (byte) (DB[i] ^ dbMask[i]); } | DB[i] = (byte)(DB[i] ^ dbMask[i]); | public boolean decode(byte[] mHash, byte[] EM, int emBits, int sLen) { if (DEBUG && debuglevel > 8) { debug("mHash: " + Util.toString(mHash)); debug("EM: " + Util.toString(EM)); debug("emBits: " + String.valueOf(emBits)); debug("sLen: " + String.valueOf(sLen)); } if (sLen ... |
debug("dbMask (decode): " + Util.toString(dbMask)); debug("DB (decode): " + Util.toString(DB)); | log.fine("dbMask (decode): " + Util.toString(dbMask)); log.fine("DB (decode): " + Util.toString(DB)); | public boolean decode(byte[] mHash, byte[] EM, int emBits, int sLen) { if (DEBUG && debuglevel > 8) { debug("mHash: " + Util.toString(mHash)); debug("EM: " + Util.toString(EM)); debug("emBits: " + String.valueOf(emBits)); debug("sLen: " + String.valueOf(sLen)); } if (sLen ... |
if (DEBUG && debuglevel > 8) { debug("DB[" + String.valueOf(i) + "] != 0x00"); } | if (Configuration.DEBUG) log.fine("DB[" + String.valueOf(i) + "] != 0x00"); | public boolean decode(byte[] mHash, byte[] EM, int emBits, int sLen) { if (DEBUG && debuglevel > 8) { debug("mHash: " + Util.toString(mHash)); debug("EM: " + Util.toString(EM)); debug("emBits: " + String.valueOf(emBits)); debug("sLen: " + String.valueOf(sLen)); } if (sLen ... |
if (DEBUG && debuglevel > 8) { debug("DB's byte at position (emLen -hLen -sLen -2); i.e. " | if (Configuration.DEBUG) log.fine("DB's byte at position (emLen -hLen -sLen -2); i.e. " | public boolean decode(byte[] mHash, byte[] EM, int emBits, int sLen) { if (DEBUG && debuglevel > 8) { debug("mHash: " + Util.toString(mHash)); debug("EM: " + Util.toString(EM)); debug("emBits: " + String.valueOf(emBits)); debug("sLen: " + String.valueOf(sLen)); } if (sLen ... |
{ | public byte[] encode(byte[] mHash, int emBits, byte[] salt) { int sLen = salt.length; // 1. If the length of M is greater than the input limitation for the hash // function (2**61 - 1 octets for SHA-1) then output "message too long" // and stop. // 2. Let mHash = Hash(M), an octet string of length hLe... | |
} | public byte[] encode(byte[] mHash, int emBits, byte[] salt) { int sLen = salt.length; // 1. If the length of M is greater than the input limitation for the hash // function (2**61 - 1 octets for SHA-1) then output "message too long" // and stop. // 2. Let mHash = Hash(M), an octet string of length hLe... | |
if (DEBUG && debuglevel > 8) | if (Configuration.DEBUG) | public byte[] encode(byte[] mHash, int emBits, byte[] salt) { int sLen = salt.length; // 1. If the length of M is greater than the input limitation for the hash // function (2**61 - 1 octets for SHA-1) then output "message too long" // and stop. // 2. Let mHash = Hash(M), an octet string of length hLe... |
debug("dbMask (encode): " + Util.toString(dbMask)); debug("DB (encode): " + Util.toString(DB)); | log.fine("dbMask (encode): " + Util.toString(dbMask)); log.fine("DB (encode): " + Util.toString(DB)); | public byte[] encode(byte[] mHash, int emBits, byte[] salt) { int sLen = salt.length; // 1. If the length of M is greater than the input limitation for the hash // function (2**61 - 1 octets for SHA-1) then output "message too long" // and stop. // 2. Let mHash = Hash(M), an octet string of length hLe... |
{ DB[i] = (byte) (DB[i] ^ dbMask[i]); } | DB[i] = (byte)(DB[i] ^ dbMask[i]); | public byte[] encode(byte[] mHash, int emBits, byte[] salt) { int sLen = salt.length; // 1. If the length of M is greater than the input limitation for the hash // function (2**61 - 1 octets for SHA-1) then output "message too long" // and stop. // 2. Let mHash = Hash(M), an octet string of length hLe... |
public void addPropertyChangeListener(String prop, PropertyChangeListener listener); | void addPropertyChangeListener(String prop, PropertyChangeListener listener); | public void addPropertyChangeListener(String prop, PropertyChangeListener listener); |
public void addVetoableChangeListener(String prop, VetoableChangeListener listener); | void addVetoableChangeListener(String prop, VetoableChangeListener listener); | public void addVetoableChangeListener(String prop, VetoableChangeListener listener); |
public BeanContext getBeanContext(); | BeanContext getBeanContext(); | public BeanContext getBeanContext(); |
public void removePropertyChangeListener(String prop, PropertyChangeListener listener); | void removePropertyChangeListener(String prop, PropertyChangeListener listener); | public void removePropertyChangeListener(String prop, PropertyChangeListener listener); |
public void removeVetoableChangeListener(String prop, VetoableChangeListener listener); | void removeVetoableChangeListener(String prop, VetoableChangeListener listener); | public void removeVetoableChangeListener(String prop, VetoableChangeListener listener); |
public void setBeanContext(BeanContext parent) | void setBeanContext(BeanContext parent) | public void setBeanContext(BeanContext parent) throws PropertyVetoException; |
int index = offset; | StringBuffer contentBuffer = new StringBuffer(); | protected void insert(int offset, ElementSpec[] data) throws BadLocationException { writeLock(); // First we insert the content. int index = offset; for (int i = 0; i < data.length; i++) { ElementSpec spec = data[i]; if (spec.getArray() != null && spec.getLength() > 0) { ... |
{ String insertString = new String(spec.getArray(), spec.getOffset(), | contentBuffer.append(spec.getArray(), spec.getOffset(), | protected void insert(int offset, ElementSpec[] data) throws BadLocationException { writeLock(); // First we insert the content. int index = offset; for (int i = 0; i < data.length; i++) { ElementSpec spec = data[i]; if (spec.getArray() != null && spec.getLength() > 0) { ... |
content.insertString(index, insertString); } index += spec.getLength(); | protected void insert(int offset, ElementSpec[] data) throws BadLocationException { writeLock(); // First we insert the content. int index = offset; for (int i = 0; i < data.length; i++) { ElementSpec spec = data[i]; if (spec.getArray() != null && spec.getLength() > 0) { ... | |
DefaultDocumentEvent ev = new DefaultDocumentEvent(offset, index - offset, | int length = contentBuffer.length(); if (length == 0) return; UndoableEdit edit = content.insertString(offset, contentBuffer.toString()); DefaultDocumentEvent ev = new DefaultDocumentEvent(offset, length, | protected void insert(int offset, ElementSpec[] data) throws BadLocationException { writeLock(); // First we insert the content. int index = offset; for (int i = 0; i < data.length; i++) { ElementSpec spec = data[i]; if (spec.getArray() != null && spec.getLength() > 0) { ... |
buffer.insert(offset, index - offset, data, ev); if (ev.modified) | buffer.insert(offset, length, data, ev); | protected void insert(int offset, ElementSpec[] data) throws BadLocationException { writeLock(); // First we insert the content. int index = offset; for (int i = 0; i < data.length; i++) { ElementSpec spec = data[i]; if (spec.getArray() != null && spec.getLength() > 0) { ... |
} | protected void insert(int offset, ElementSpec[] data) throws BadLocationException { writeLock(); // First we insert the content. int index = offset; for (int i = 0; i < data.length; i++) { ElementSpec spec = data[i]; if (spec.getArray() != null && spec.getLength() > 0) { ... | |
super(TYPE_DOUBLE, size); | super(TYPE_DOUBLE, size, 1, 0); bankData = new double[1][]; | public DataBufferDouble(int size) { super(TYPE_DOUBLE, size); data = new double[size]; } |
bankData[0] = data; | public DataBufferDouble(int size) { super(TYPE_DOUBLE, size); data = new double[size]; } | |
if (Configuration.DEBUG) System.out.println(s); | final private void debug(String s) { } | |
int start_range = 0; if (!Configuration.DEBUG) return; System.out.println("Dumping internal table:"); for (int i = 0; i < ranges.length; i++) { System.out.print("\t" + start_range + " => " + ranges[i] + ":"); if (attributes[i] == null) System.out.println("null"); else { Set keyset = attributes[i].keySet(); if (keyset... | final private void dumpTable() {// int start_range = 0;// // if (!Configuration.DEBUG)// return;//// System.out.println("Dumping internal table:");// for (int i = 0; i < ranges.length; i++)// {// System.out.print("\t" + start_range + " => " + ranges[i] + ":");// if (attributes[i] == null)// ... | |
public ClassCastException() { super(); } | public ClassCastException() { } | public ClassCastException() { super(); } |
if (failOnNewLoad) { throw new RuntimeException( "Cannot load a new class when failOnNewLoad is set (" + name + ")"); } | private VmType loadNormalClass(String name) throws IOException, ClassNotFoundException { if (failOnNewLoad) { throw new RuntimeException( "Cannot load a new class when failOnNewLoad is set (" + name + ")"); } boolean allowNatives = false; allowNa... | |
if (failOnNewLoad) { throw new RuntimeException( "Cannot load a new class when failOnNewLoad is set (" + name + ")"); } | private VmType loadNormalClass(String name) throws IOException, ClassNotFoundException { if (failOnNewLoad) { throw new RuntimeException( "Cannot load a new class when failOnNewLoad is set (" + name + ")"); } boolean allowNatives = false; allowNa... | |
return get(qName.toString(), null, 1, 1); | return get(qName, null, 1, 1); | public Object resolveVariable(QName qName) { return get(qName.toString(), null, 1, 1); } |
buf.append('}'); | buf.append(']'); | public String toString() { StringBuffer buf = new StringBuffer(); boolean next = false; Collection seen = new HashSet(); buf.append('{'); for (Iterator i = variables.iterator(); i.hasNext(); ) { Map ctx = (Map) i.next(); for (Iterator j = ctx.entrySet().iterator(); j.hasNext(); ) ... |
System.err.println(" PIPE: applet viewer read: " + message); | System.err.println (" " + Messages.getString("PluginAppletViewer.AppletViewerRead") + message); | static String read() throws IOException { String message = pluginInputStream.readLine(); System.err.println(" PIPE: applet viewer read: " + message); if (message == null || message.equals("shutdown")) { // Close input/output channels to plugin. pluginInputStream.close(); pluginOutputStream.close(); Sy... |
System.err.println("appletviewer: exiting plugin applet viewer"); | System.err.println (Messages.getString("PluginAppletViewer.AppletViewerExiting")); | static String read() throws IOException { String message = pluginInputStream.readLine(); System.err.println(" PIPE: applet viewer read: " + message); if (message == null || message.equals("shutdown")) { // Close input/output channels to plugin. pluginInputStream.close(); pluginOutputStream.close(); Sy... |
System.err.println(" PIPE: applet viewer wrote: " + message); | System.err.println (" " + Messages.getString("PluginAppletViewer.AppletViewerWrote") + message); | static void write(String message) throws IOException { pluginOutputStream.write(message, 0, message.length()); pluginOutputStream.newLine(); pluginOutputStream.flush(); System.err.println(" PIPE: applet viewer wrote: " + message); } |
this.sourceActions = NONE; | protected TransferHandler() { // Do nothing here. } | |
r.x -= 1; r.y -= 1; r.width += 1; r.height += 1; | private void moveToCellBeingEdited(Component component) { Rectangle r = getCellRect(editingRow, editingColumn, true); component.setBounds(r); } | |
if (event != null) { int first = event.getFirstRow(); if (first < 0) first = 0; int last = event.getLastRow(); if (last < 0) last = getRowCount() - 1; selectionModel.removeIndexInterval(first, last); } | public void tableChanged (TableModelEvent event) { // update the column model from the table model if the structure has // changed and the flag autoCreateColumnsFromModel is set if ((event == null || (event.getFirstRow() == TableModelEvent.HEADER_ROW)) && autoCreateColumnsFromModel) createDefa... | |
checkMethods(readMethod, setMethod); | propertyType = checkMethods(readMethod, setMethod); | public void setReadMethod(Method readMethod) throws IntrospectionException { checkMethods(readMethod, setMethod); getMethod = readMethod; } |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.