Searched refs:oldKey (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DSnmpUsmKeyHandler.java78 * @param oldKey The old key.
84 public byte[] calculateAuthDelta(String algoName, byte[] oldKey, byte[] newKey, byte[] random) throws IllegalArgumentException; argument
89 * @param oldKey The old key.
96 public byte[] calculatePrivDelta(String algoName, byte[] oldKey, byte[] newKey, byte[] random, int deltaSize) throws IllegalArgumentException; argument
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/c14n/implementations/
H A DNameSpaceSymbTable.java330 Object oldKey = keys[index];
333 if (oldKey==null || !oldKey.equals(key)) {
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJLabel.java485 int oldKey = mnemonic;
487 firePropertyChange("displayedMnemonic", oldKey, mnemonic);
492 if (key != oldKey) {
/openjdk7/jdk/src/share/classes/java/beans/
H A DMetaData.java677 for ( Object oldKey : oldMap.keySet() ) {
678 Expression oldGetExp = new Expression(oldInstance, "get", new Object[]{oldKey});
680 Expression newGetExp = new Expression(newInstance, "get", new Object[]{oldKey});
686 invokeStatement(oldInstance, "put", new Object[]{oldKey, oldValue}, out);
687 } else if ((newValue == null) && !newMap.containsKey(oldKey)) {
688 // put oldValue(=null?) if oldKey is absent in newMap
689 invokeStatement(oldInstance, "put", new Object[]{oldKey, oldValue}, out);

Completed in 2028 milliseconds