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 16592968B for ; Sat, 28 Jul 2012 14:34:23 +0000 (UTC) Received: (qmail 13643 invoked by uid 500); 28 Jul 2012 14:34:23 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 13370 invoked by uid 500); 28 Jul 2012 14:34:22 -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 13359 invoked by uid 99); 28 Jul 2012 14:34:22 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 28 Jul 2012 14:34:22 +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; Sat, 28 Jul 2012 14:34:17 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 29CE823889DA for ; Sat, 28 Jul 2012 14:33:34 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1366686 - /commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/export/ExportSelector.java Date: Sat, 28 Jul 2012 14:33:34 -0000 To: commits@commons.apache.org From: simonetripodi@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120728143334.29CE823889DA@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: simonetripodi Date: Sat Jul 28 14:33:33 2012 New Revision: 1366686 URL: http://svn.apache.org/viewvc?rev=1366686&view=rev Log: javadoc - no functional modifications Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/export/ExportSelector.java Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/export/ExportSelector.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/export/ExportSelector.java?rev=1366686&r1=1366685&r2=1366686&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/export/ExportSelector.java (original) +++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/export/ExportSelector.java Sat Jul 28 14:33:33 2012 @@ -20,8 +20,8 @@ package org.apache.commons.graph.export; */ /** - * TODO Fill me!! - * + * Allows users selecting the format of graph serialization. + * * @param the Graph vertices type. * @param the Graph edges type. */ @@ -30,6 +30,7 @@ public interface ExportSelector /** * Export Graphs in DOT language. + * * @return {@link DotExporter} instance * @throws GraphExportException */ @@ -38,6 +39,7 @@ public interface ExportSelector /** * Export Graphs in GraphML file format. + * * @return {@link GraphMLExporter} instance * @throws GraphExportException */