// Register this as the parent of the System Dictionary
systemDictToUse.setPSInterpreter(this);
final PsServer4a psServer = new PsServer4a();
// Add the Standard Encoding to the System Dictionary.
PsName name = new PsName("StandardEncoding", false, false);
EncodingVector encoding = psServer.getPredefinedEncoding(name.getValue());
PsArray array = new PsArray(encoding.getGlyphNames(), false);
systemDictToUse.addItem(this, name, array);
// Add the ISO Latin 1 Encoding to the System Dictionary.
name = new PsName("ISOLatin1Encoding", false, false);
encoding = psServer.getPredefinedEncoding(name.getValue());
array = new PsArray(encoding.getGlyphNames(), false);
systemDictToUse.addItem(this, name, array);
// Add the System Dictionary to the dictionary stack.
this.dictionaryStack.push(systemDictToUse);
/*
* Add "systemdict" as an entry in itself. See PLRM2, Section 8.2,