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

/openjdk7/jdk/src/share/classes/sun/applet/
H A DAppletSecurityException.java36 private Object msgobj[] = null; field in class:AppletSecurityException
45 msgobj = new Object[1];
46 msgobj[0] = (Object)arg;
51 msgobj = new Object[2];
52 msgobj[0] = (Object)arg1;
53 msgobj[1] = (Object)arg2;
57 if( msgobj != null)
58 return amh.getMessage(key, msgobj);
H A DAppletIOException.java38 private Object msgobj = null; field in class:AppletIOException
47 msgobj = arg;
51 if( msgobj != null)
52 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 39 milliseconds