~keheliya-gallaba/gephi/maven-build

« back to all changes in this revision

Viewing changes to exporter.plugin/src/main/java/org/gephi/io/exporter/plugin/ExporterBuilderGDF.java

  • Committer: Keheliya Gallaba
  • Date: 2011-08-01 13:01:30 UTC
  • Revision ID: keheliya.gallaba@gmail.com-20110801130130-0u2qgcufi8bvqwxv
Adding Export Plugin, Export Plugin UI, Filters Impl

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
Copyright 2008-2010 Gephi
 
3
Authors : Mathieu Bastian <mathieu.bastian@gephi.org>
 
4
Website : http://www.gephi.org
 
5
 
 
6
This file is part of Gephi.
 
7
 
 
8
Gephi is free software: you can redistribute it and/or modify
 
9
it under the terms of the GNU Affero General Public License as
 
10
published by the Free Software Foundation, either version 3 of the
 
11
License, or (at your option) any later version.
 
12
 
 
13
Gephi is distributed in the hope that it will be useful,
 
14
but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
GNU Affero General Public License for more details.
 
17
 
 
18
You should have received a copy of the GNU Affero General Public License
 
19
along with Gephi.  If not, see <http://www.gnu.org/licenses/>.
 
20
*/
 
21
package org.gephi.io.exporter.plugin;
 
22
 
 
23
import org.gephi.io.exporter.api.FileType;
 
24
import org.gephi.io.exporter.spi.GraphExporter;
 
25
import org.gephi.io.exporter.spi.GraphFileExporterBuilder;
 
26
import org.openide.util.NbBundle;
 
27
import org.openide.util.lookup.ServiceProvider;
 
28
 
 
29
/**
 
30
 *
 
31
 * @author Mathieu Bastian
 
32
 */
 
33
@ServiceProvider(service = GraphFileExporterBuilder.class)
 
34
public class ExporterBuilderGDF implements GraphFileExporterBuilder {
 
35
 
 
36
    public GraphExporter buildExporter() {
 
37
        return new ExporterGDF();
 
38
    }
 
39
 
 
40
    public FileType[] getFileTypes() {
 
41
        FileType ft = new FileType(".gdf", NbBundle.getMessage(ExporterBuilderGDF.class, "fileType_GDF_Name"));
 
42
        return new FileType[]{ft};
 
43
    }
 
44
 
 
45
    public String getName() {
 
46
        return "GDF";
 
47
    }
 
48
}