Searched refs:newAction (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/awt/
H A DAWTCharset.java93 protected void implOnMalformedInput(CodingErrorAction newAction) { argument
94 enc.onMalformedInput(newAction);
96 protected void implOnUnmappableCharacter(CodingErrorAction newAction) { argument
97 enc.onUnmappableCharacter(newAction);
133 protected void implOnMalformedInput(CodingErrorAction newAction) { argument
134 dec.onMalformedInput(newAction);
136 protected void implOnUnmappableCharacter(CodingErrorAction newAction) { argument
137 dec.onUnmappableCharacter(newAction);
/openjdk7/jdk/src/share/classes/java/nio/charset/
H A DCharset-X-Coder.java.template359 * @param newAction The new action; must not be <tt>null</tt>
366 public final Charset$Coder$ onMalformedInput(CodingErrorAction newAction) {
367 if (newAction == null)
369 malformedInputAction = newAction;
370 implOnMalformedInput(newAction);
381 protected void implOnMalformedInput(CodingErrorAction newAction) { }
400 * @param newAction The new action; must not be <tt>null</tt>
408 newAction)
410 if (newAction == null)
412 unmappableCharacterAction = newAction;
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DAbstractAction.java343 AbstractAction newAction = (AbstractAction)super.clone();
346 newAction.arrayTable = (ArrayTable)arrayTable.clone();
349 return newAction;
/openjdk7/jdk/src/solaris/classes/sun/nio/cs/ext/
H A DCOMPOUND_TEXT_Decoder.java683 protected void implOnMalformedInput(CodingErrorAction newAction) { argument
685 glDecoder.onMalformedInput(newAction);
687 grDecoder.onMalformedInput(newAction);
689 nonStandardDecoder.onMalformedInput(newAction);
692 protected void implOnUnmappableCharacter(CodingErrorAction newAction) { argument
694 glDecoder.onUnmappableCharacter(newAction);
696 grDecoder.onUnmappableCharacter(newAction);
698 nonStandardDecoder.onUnmappableCharacter(newAction);
H A DCOMPOUND_TEXT_Encoder.java267 protected void implOnMalformedInput(CodingErrorAction newAction) { argument
268 encoder.onUnmappableCharacter(newAction);
271 protected void implOnUnmappableCharacter(CodingErrorAction newAction) { argument
272 encoder.onUnmappableCharacter(newAction);
/openjdk7/jdk/src/share/demo/jfc/Notepad/
H A DNotepad.java477 public static final String newAction = "new"; field in class:Notepad
654 super(newAction);

Completed in 37 milliseconds