diff options
author | wisberg <wisberg> | 2003-02-01 01:40:58 +0000 |
---|---|---|
committer | wisberg <wisberg> | 2003-02-01 01:40:58 +0000 |
commit | e1fead754e112b419a5f76dcdafc5443dd814104 (patch) | |
tree | 6118741805e8e502f101f240fb599331bfb6945b /ajde | |
parent | 1b52bb2c266e2022fe42bad3686ae094376c0b0d (diff) | |
download | aspectj-e1fead754e112b419a5f76dcdafc5443dd814104.tar.gz aspectj-e1fead754e112b419a5f76dcdafc5443dd814104.zip |
text constant change only.
fixed aspectj.org and MPL references in about box.
Diffstat (limited to 'ajde')
-rw-r--r-- | ajde/src/org/aspectj/ajde/ui/swing/OptionsFrame.java | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/ajde/src/org/aspectj/ajde/ui/swing/OptionsFrame.java b/ajde/src/org/aspectj/ajde/ui/swing/OptionsFrame.java index 8690a8070..14fdbb511 100644 --- a/ajde/src/org/aspectj/ajde/ui/swing/OptionsFrame.java +++ b/ajde/src/org/aspectj/ajde/ui/swing/OptionsFrame.java @@ -33,15 +33,22 @@ import org.aspectj.bridge.Version; */ public class OptionsFrame extends JFrame { + // XXX using \n b/c JTextArea.setLineWrap(true) lineates inside words. private static final String ABOUT_TEXT = - "\nPlease submit bugs at http://aspectj.org/bugs\n" + - "For support questions email support@aspectj.org\n\n" + - "The AspectJ compiler and core tools are distributed under\n" + - "the Mozilla Public License version 1.1. This license has\n" + - "been approved by the Open Source Initiative as conforming\n" + - "to the Open Source Definition. For more information and the\n" + - "license please visit http://aspectj.org/license\n"; - + "\nThe AspectJ compiler and core tools are produced by the\n" + + "AspectJ project.\n\n" + + "This software is distributed under the Common Public License\n" + + "version 1.0, approved by the Open Source Initiative as\n" + + "conforming to the Open Source Definition.\n\n" + + "For support or for more information about the AspectJ\n" + + "project or the license, visit the project home page at\n" + + " http://eclipse.org/aspectj\n\n" + + "If you find a bug (not solved by the documentation in the\n" + + "Development Environment Guide available with this release,\n" + + "any release notes, or the bug database), please submit steps\n" + + "to reproduce the bug (using the IDE component) at:\n" + + " http://bugs.eclipse.org/bugs/enter_bug.cgi?product=AspectJ"; + private JTabbedPane main_tabbedPane = new JTabbedPane(); private JPanel button_panel = new JPanel(); private JButton apply_button = new JButton(); @@ -239,6 +246,7 @@ public class OptionsFrame extends JFrame { jTextArea1.setFont(new java.awt.Font("SansSerif", 0, 12)); jTextArea1.setEditable(false); jTextArea1.setText(ABOUT_TEXT); + about_panel.setBorder(border9); built_label.setText("Built: "); built_label.setFont(new java.awt.Font("Dialog", 1, 12)); |