Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
82 lines (56 loc) · 3.31 KB

File metadata and controls

82 lines (56 loc) · 3.31 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!--
Chapter describing system architecture in the DrJava Developer
Documentation. All chapters are joined into a single document
in devdoc.docbook.
@version $Id: devdoc.docbook 3498 2006-01-17 22:36:31Z dlsmith $
-->
<chapter id="systemArchitecture">
<title>System Architecture</title>
<para>This section is a high-level overview of the various components that make up the DrJava application. Important design decisions, especially those that can't easily be described in a single class's comments, should be discussed here. The scope is restricted to code that is actively developed as part of the DrJava project; third-party tools and libraries are discussed in the <link linkend="supportingTechnology">Supporting Technology</link> chapter.</para>
<section id="architectureOverview">
<title>Overview</title>
<para>[TODO]</para>
</section>
<section id="documentModel">
<title>The Document Model</title>
<para>[TODO]</para>
</section>
<section id="configFramework">
<title>The Configuration Framework</title>
<para>[TODO]</para>
<!-- Clipped from the previous docs:
<formalpara>
<title>Use of the Configuration Framework</title>
<para>DrJava's configurable options are managed through a framework in the <literal>edu.rice.cs.drjava.config</literal> package. This framework takes care of loading and saving options from the <filename>.drjava</filename> file, as well as managing listeners to changed configuration options. The main class of interest is <literal>OptionConstants</literal>, which defines all options and their default values. You can get and change settings using the static <literal>DrJava.getConfig()</literal> method.</para>
</formalpara>
<para>It is very important never to use the configuration framework in the Interpreter JVM, since this will instantiate a new copy of the framework inconsistent with the one in the Main JVM. (It also causes the "SlaveJVMRunner" icon to appear in Mac OS X.) It is also very important never to use the configuration framework in the Eclipse plug-in, because it causes Eclipse to crash. (We're not sure why, but it's better for us to use Eclipse's preferences in that world anyway.)</para>
-->
</section>
<section id="projects">
<title>Projects</title>
<para>[TODO]</para>
</section>
<section id="compilerAdapters">
<title>Compiler Adapters</title>
<para>[TODO]</para>
</section>
<section id="dynamicJava">
<title>DynamicJava Interpreter</title>
<para>[TODO]</para>
</section>
<section id="debugger">
<title>Debugger</title>
<para>[TODO]</para>
</section>
<section id="languageLevels">
<title>Language Levels Compiler</title>
<para>[TODO]</para>
</section>
<section id="eclipsePlugin">
<title>Eclipse Plug-in</title>
<para>[TODO]</para>
</section>
<!-- Clipped from the previous docs (for the description under the "docs" module):
<para>Emacs and modern versions of KDE's KWrite are both good editors for DocBook files. Please try to maintain a consistent style within the documentation, both in tone (eg. somewhat informal &mdash; "you" instead of "the user") and formatting (eg. literal tags for small bits of code, paragraphs on one line, etc).</para>
-->
</chapter>
Morty Proxy This is a proxified and sanitized view of the page, visit original site.