Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 0700D9DA9 for ; Mon, 19 Mar 2012 21:32:39 +0000 (UTC) Received: (qmail 28184 invoked by uid 500); 19 Mar 2012 21:32:39 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 28051 invoked by uid 500); 19 Mar 2012 21:32:39 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 28044 invoked by uid 99); 19 Mar 2012 21:32:39 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Mar 2012 21:32:39 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Mar 2012 21:32:38 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 53BFF2388CB3 for ; Mon, 19 Mar 2012 21:32:18 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1302664 - /commons/sandbox/graph/branches/exporters-with-mappers/src/main/java/org/apache/commons/graph/export/ExportSelctor.java Date: Mon, 19 Mar 2012 21:32:18 -0000 To: commits@commons.apache.org From: simonetripodi@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120319213218.53BFF2388CB3@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: simonetripodi Date: Mon Mar 19 21:32:17 2012 New Revision: 1302664 URL: http://svn.apache.org/viewvc?rev=1302664&view=rev Log: dropped commented methods trailing spaces on empty lines Modified: commons/sandbox/graph/branches/exporters-with-mappers/src/main/java/org/apache/commons/graph/export/ExportSelctor.java Modified: commons/sandbox/graph/branches/exporters-with-mappers/src/main/java/org/apache/commons/graph/export/ExportSelctor.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/branches/exporters-with-mappers/src/main/java/org/apache/commons/graph/export/ExportSelctor.java?rev=1302664&r1=1302663&r2=1302664&view=diff ============================================================================== --- commons/sandbox/graph/branches/exporters-with-mappers/src/main/java/org/apache/commons/graph/export/ExportSelctor.java (original) +++ commons/sandbox/graph/branches/exporters-with-mappers/src/main/java/org/apache/commons/graph/export/ExportSelctor.java Mon Mar 19 21:32:17 2012 @@ -22,16 +22,12 @@ package org.apache.commons.graph.export; public interface ExportSelctor { - //VertexMapperSelector withVertexProperty( String name ); - - //EdgeMapperSelector withEdgeProperty( String name ); - /** * Export Graphs in DOT language. */ DotExporter usingDotNotation() throws GraphExportException; - + DotExporter usingDotNotation( String name ) throws GraphExportException; @@ -40,7 +36,7 @@ public interface ExportSelctor */ GraphMLExporter usingGraphMLFormat() throws GraphExportException; - + GraphMLExporter usingGraphMLFormat( String name ) throws GraphExportException;