Searched refs:msgobj (Results 1 - 3 of 3) sorted by relevance

/openjdk9/jdk/src/java.desktop/share/classes/sun/applet/
H A DAppletSecurityException.java37 private Object msgobj[] = null; field in class:AppletSecurityException
46 msgobj = new Object[1];
47 msgobj[0] = (Object)arg;
52 msgobj = new Object[2];
53 msgobj[0] = (Object)arg1;
54 msgobj[1] = (Object)arg2;
58 if( msgobj != null)
59 return amh.getMessage(key, msgobj);
H A DAppletIOException.java43 private Object msgobj = null; field in class:AppletIOException
52 msgobj = arg;
56 if( msgobj != null)
57 return amh.getMessage(key, msgobj);
H A DAppletMessageHandler.java62 Object msgobj[] = new Object[1];
66 msgobj[0] = arg;
67 return msgfmt.format(msgobj);
73 Object msgobj[] = new Object[2];
80 msgobj[0] = arg1;
81 msgobj[1] = arg2;
82 return msgfmt.format(msgobj);
88 Object msgobj[] = new Object[3];
98 msgobj[0] = arg1;
99 msgobj[
[all...]

Completed in 95 milliseconds