Return-Path: Delivered-To: apmail-jakarta-ant-dev-archive@apache.org Received: (qmail 45797 invoked from network); 30 Dec 2001 00:26:33 -0000 Received: from unknown (HELO nagoya.betaversion.org) (192.18.49.131) by daedalus.apache.org with SMTP; 30 Dec 2001 00:26:33 -0000 Received: (qmail 17309 invoked by uid 97); 30 Dec 2001 00:26:35 -0000 Delivered-To: qmlist-jakarta-archive-ant-dev@jakarta.apache.org Received: (qmail 17291 invoked by uid 97); 30 Dec 2001 00:26:33 -0000 Mailing-List: contact ant-dev-help@jakarta.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 ant-dev@jakarta.apache.org Received: (qmail 17271 invoked by uid 97); 30 Dec 2001 00:26:32 -0000 Date: 30 Dec 2001 00:26:23 -0000 Message-ID: <20011230002623.8767.qmail@icarus.apache.org> From: donaldp@apache.org To: jakarta-ant-cvs@apache.org Subject: cvs commit: jakarta-ant/proposal/myrmidon/src/java/org/apache/antlib/xml DTDLocation.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N donaldp 01/12/29 16:26:23 Added: proposal/myrmidon/src/java/org/apache/antlib/xml DTDLocation.java Log: Move DTDLocation inner class to top level class Revision Changes Path 1.1 jakarta-ant/proposal/myrmidon/src/java/org/apache/antlib/xml/DTDLocation.java Index: DTDLocation.java =================================================================== /* * Copyright (C) The Apache Software Foundation. All rights reserved. * * This software is published under the terms of the Apache Software License * version 1.1, a copy of which has been included with this distribution in * the LICENSE.txt file. */ package org.apache.antlib.xml; public class DTDLocation { private String m_publicId; private String m_location; public void setLocation( final String location ) { m_location = location; } public void setPublicId( final String publicId ) { m_publicId = publicId; } public String getLocation() { return m_location; } public String getPublicId() { return m_publicId; } } -- To unsubscribe, e-mail: For additional commands, e-mail: