Return-Path: Delivered-To: apmail-ant-dev-archive@www.apache.org Received: (qmail 45712 invoked from network); 5 Oct 2003 19:31:13 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 5 Oct 2003 19:31:13 -0000 Received: (qmail 24673 invoked by uid 500); 5 Oct 2003 19:30:59 -0000 Delivered-To: apmail-ant-dev-archive@ant.apache.org Received: (qmail 24632 invoked by uid 500); 5 Oct 2003 19:30:58 -0000 Mailing-List: contact dev-help@ant.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Ant Developers List" Reply-To: "Ant Developers List" Delivered-To: mailing list dev@ant.apache.org Received: (qmail 24605 invoked by uid 500); 5 Oct 2003 19:30:58 -0000 Received: (qmail 24588 invoked from network); 5 Oct 2003 19:30:58 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 5 Oct 2003 19:30:58 -0000 Received: (qmail 45696 invoked by uid 1309); 5 Oct 2003 19:31:08 -0000 Date: 5 Oct 2003 19:31:08 -0000 Message-ID: <20031005193108.45695.qmail@minotaur.apache.org> From: chrisw@apache.org To: ant-antidote-cvs@apache.org Subject: cvs commit: ant-antidote/src/java/org/apache/tools/ant/gui/customizer package.html X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N chrisw 2003/10/05 12:31:08 Modified: src/java/org/apache/tools/ant/gui/xml XMLWriter.java src/java/org/apache/tools/ant/gui/core AppContext.java Added: src/java/org/apache/tools/ant/gui/modules/console package.html src/java/org/apache/tools/ant/gui/xml package.html src/java/org/apache/tools/ant/gui/event package.html src/java/org/apache/tools/ant/gui/core package.html src/java/org/apache/tools/ant/gui/xml/dtd package.html src/java/org/apache/tools/ant/gui/modules package.html src/java/org/apache/tools/ant/gui/modules/edit package.html src/java/org/apache/tools/ant/gui/ide package.html src/java/org/apache/tools/ant/gui/command package.html src/java/org/apache/tools/ant/gui/customizer package.html Log: Formatting XML output propertly, more JavaDoc, remove some import warnings. Obtained from: Jack Woehr Submitted by: Christoph Wilhelms Reviewed by: Christoph Wilhelms Revision Changes Path 1.1 ant-antidote/src/java/org/apache/tools/ant/gui/modules/console/package.html Index: package.html =================================================================== Provides the Antidote text output console where build events, errors, etc., get reported in realtime.

Package Specification

The Console package provides the Antidote text output console where build events, errors, etc., get reported in realtime.

1.5 +10 -7 ant-antidote/src/java/org/apache/tools/ant/gui/xml/XMLWriter.java Index: XMLWriter.java =================================================================== RCS file: /home/cvs/ant-antidote/src/java/org/apache/tools/ant/gui/xml/XMLWriter.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- XMLWriter.java 28 Sep 2003 13:03:00 -0000 1.4 +++ XMLWriter.java 5 Oct 2003 19:31:07 -0000 1.5 @@ -593,8 +593,8 @@ String qName, Attributes atts) throws SAXException { - elementLevel++; - nsSupport.pushContext(); + elementLevel++; + nsSupport.pushContext(); write('<'); writeName(uri, localName, qName, true); writeAttributes(atts); @@ -631,14 +631,18 @@ write("'); - if (elementLevel == 1) { + + if (elementLevel == 1) { writeln(); } + super.endElement(uri, localName, qName); nsSupport.popContext(); - elementLevel--; + + if (--elementLevel == 1) { + writeln(); + } } - /** * Write character data. @@ -712,7 +716,6 @@ public void comment (String data) throws SAXException { - writeln(); doIndent(); write(" Provides the Antidote infrastructure for XML parsing and writing.

Package Specification

The XML package provides the Antidote infrastructure for XML parsing and writing.

1.1 ant-antidote/src/java/org/apache/tools/ant/gui/event/package.html Index: package.html =================================================================== Provides the features of the event bus by means of which entities within the Antidote application share and manage event notifications.

Package Specification

The Event package provides the features of the event bus by means of which entities within the Antidote application share and manage event notifications.

1.7 +3 -6 ant-antidote/src/java/org/apache/tools/ant/gui/core/AppContext.java Index: AppContext.java =================================================================== RCS file: /home/cvs/ant-antidote/src/java/org/apache/tools/ant/gui/core/AppContext.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- AppContext.java 28 Sep 2003 13:03:00 -0000 1.6 +++ AppContext.java 5 Oct 2003 19:31:08 -0000 1.7 @@ -52,12 +52,9 @@ * . */ package org.apache.tools.ant.gui.core; -import org.apache.tools.ant.BuildListener; -import org.apache.tools.ant.gui.event.*; -import org.apache.tools.ant.gui.acs.ACSProjectElement; -import org.apache.tools.ant.gui.acs.ACSTargetElement; import java.awt.Frame; -import java.util.*; + +import org.apache.tools.ant.gui.event.EventBus; /** * A container for the state information for the application. Provides 1.1 ant-antidote/src/java/org/apache/tools/ant/gui/core/package.html Index: package.html =================================================================== Occupies the foundation layer of the Antidote application.

Package Specification

The Core occupies the foundation layer of the Antidote application.

1.1 ant-antidote/src/java/org/apache/tools/ant/gui/xml/dtd/package.html Index: package.html =================================================================== Contains the tools for utilizing DTD's for XML parsing and writing of Ant build files.

Package Specification

The XML DTD package contains the tools for utilizing DTD's for XML parsing and writing of Ant build files.

1.1 ant-antidote/src/java/org/apache/tools/ant/gui/modules/package.html Index: package.html =================================================================== Provides infrastructure for the modules of this package's subpackages.

Package Specification

Modules Package provides infrastructure for the modules of this package's subpackages. Said modules constitute the high-level capabilities of Antidote, e.g., the editors.

1.1 ant-antidote/src/java/org/apache/tools/ant/gui/modules/edit/package.html Index: package.html =================================================================== Provides Antidote's editing capabilites.

Package Specification

The Edit package provides Antidote's editing capabilities. Editors are GUI entities which appear in a Pane and know how to format particular items for easy editing.

1.1 ant-antidote/src/java/org/apache/tools/ant/gui/ide/package.html Index: package.html =================================================================== Integrates with IDE aspects of other applications, currently only Emacs.

Package Specification

The IDE package integrates Antidote with IDE aspects of other applications, currently only Emacs.

1.1 ant-antidote/src/java/org/apache/tools/ant/gui/command/package.html Index: package.html =================================================================== Performs the real work when Antidote responds to a command, e.g., from a menu selection.

Package Specification

The Command package performs the real work when Antidote responds to a command, e.g., from a menu selection.

1.1 ant-antidote/src/java/org/apache/tools/ant/gui/customizer/package.html Index: package.html =================================================================== Consists of property editors specific to the various attributes and other Ant XML entities.

Package Specification

Customizer package consists of property editors specific to the various attributes and other Ant XML entities.

--------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org For additional commands, e-mail: dev-help@ant.apache.org