Return-Path: Delivered-To: apmail-jakarta-commons-dev-archive@apache.org Received: (qmail 92143 invoked from network); 24 Jul 2003 06:19:28 -0000 Received: from exchange.sun.com (192.18.33.10) by daedalus.apache.org with SMTP; 24 Jul 2003 06:19:28 -0000 Received: (qmail 28524 invoked by uid 97); 24 Jul 2003 06:22:12 -0000 Delivered-To: qmlist-jakarta-archive-commons-dev@nagoya.betaversion.org Received: (qmail 28517 invoked from network); 24 Jul 2003 06:22:11 -0000 Received: from daedalus.apache.org (HELO apache.org) (208.185.179.12) by nagoya.betaversion.org with SMTP; 24 Jul 2003 06:22:11 -0000 Received: (qmail 91916 invoked by uid 500); 24 Jul 2003 06:19:24 -0000 Mailing-List: contact commons-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Jakarta Commons Developers List" Reply-To: "Jakarta Commons Developers List" Delivered-To: mailing list commons-dev@jakarta.apache.org Received: (qmail 91889 invoked from network); 24 Jul 2003 06:19:23 -0000 Received: from mx1.e-point.pl (HELO mail.pov.com.pl) (217.153.26.147) by daedalus.apache.org with SMTP; 24 Jul 2003 06:19:23 -0000 Received: from nkllon.pov.com.pl ([192.168.0.102] helo=e-point.pl) by mail.pov.com.pl with esmtp (Exim 3.34 #4) id 19fZRl-0002FU-00 for commons-dev@jakarta.apache.org; Thu, 24 Jul 2003 08:19:25 +0200 Message-ID: <3F1F7AFF.1020107@e-point.pl> Date: Thu, 24 Jul 2003 08:21:51 +0200 From: Tomasz Skutnik User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4) Gecko/20030624 X-Accept-Language: en-us MIME-Version: 1.0 To: "commons-dev >> Jakarta Commons Developers List" Subject: graph2 VisitorAdapter X-Enigmail-Version: 0.76.1.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: multipart/mixed; boundary="------------050106010108030004040404" X-Scanner: exiscan *19fZRl-0002FU-00*I0MPvUdFmi6* (e-point S.A., Warsaw, Poland) X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N --------------050106010108030004040404 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Hi. Here is VisitorAdapter class, which is dummy (no operation) implementation of Visitor interface. You know what is it for :) Please commit. Scooter. -- Tomasz Skutnik, R&D Director, www.e-point.pl tel +48 (22) 853 48 30, mob +48 501 555 705, fax +48 (22) 853 48 30 e-point S.A., ul. Filona 16, 02-658 Warsaw, Poland PGP/GPG public key: http://scooter.ext.e-point.pl/tomasz.skutnik.gpg --------------050106010108030004040404 Content-Type: text/x-java; name="VisitorAdapter.java" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="VisitorAdapter.java" package org.apache.commons.graph.algorithm.search; import org.apache.commons.graph.Edge; import org.apache.commons.graph.Graph; import org.apache.commons.graph.Vertex; /** * Default no-op {@link Visitor} adapter. * * @author Tomasz Skutnik */ public class VisitorAdapter implements Visitor { public void discoverGraph(Graph graph) { } public void discoverVertex(Vertex vertex) { } public void discoverEdge(Edge edge) { } public void finishEdge(Edge edge) { } public void finishVertex(Vertex vertex) { } public void finishGraph(Graph graph) { } } --------------050106010108030004040404 Content-Type: text/plain; charset=us-ascii --------------------------------------------------------------------- To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: commons-dev-help@jakarta.apache.org --------------050106010108030004040404--