~ubuntu-branches/ubuntu/maverick/cdk/maverick

« back to all changes in this revision

Viewing changes to src/org/openscience/cdk/io/formats/RawCopyFormat.java

  • Committer: Bazaar Package Importer
  • Author(s): Paul Cager
  • Date: 2008-04-09 21:17:53 UTC
  • Revision ID: james.westby@ubuntu.com-20080409211753-46lmjw5z8mx5pd8d
Tags: upstream-1.0.2
ImportĀ upstreamĀ versionĀ 1.0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $RCSfile$
 
2
 * $Author: egonw $
 
3
 * $Date: 2006-03-29 10:27:08 +0200 (Mi, 29 Mrz 2006) $
 
4
 * $Revision: 5855 $
 
5
 *
 
6
 * Copyright (C) 2004-2007  The Chemistry Development Kit (CDK) project
 
7
 *
 
8
 * Contact: cdk-devel@lists.sourceforge.net
 
9
 *
 
10
 * This library is free software; you can redistribute it and/or
 
11
 * modify it under the terms of the GNU Lesser General Public
 
12
 * License as published by the Free Software Foundation; either
 
13
 * version 2.1 of the License, or (at your option) any later version.
 
14
 *
 
15
 *  This library is distributed in the hope that it will be useful,
 
16
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
17
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
18
 * Lesser General Public License for more details.
 
19
 *
 
20
 * You should have received a copy of the GNU Lesser General Public
 
21
 * License along with this library; if not, write to the Free Software
 
22
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 
23
 */
 
24
package org.openscience.cdk.io.formats;
 
25
 
 
26
import org.openscience.cdk.tools.DataFeatures;
 
27
 
 
28
/**
 
29
 * See <a href="http://openbabel.sourceforge.net/wiki/Raw_Copy">here</a>.
 
30
 * 
 
31
 * @cdk.module io
 
32
 * @cdk.set    io-formats
 
33
 */
 
34
public class RawCopyFormat implements IChemFormat {
 
35
 
 
36
        private static IResourceFormat myself = null;
 
37
        
 
38
    private RawCopyFormat() {}
 
39
    
 
40
    public static IResourceFormat getInstance() {
 
41
        if (myself == null) myself = new RawCopyFormat();
 
42
        return myself;
 
43
    }
 
44
    
 
45
    public String getFormatName() {
 
46
        return "Raw Copy";
 
47
    }
 
48
 
 
49
    public String getMIMEType() {
 
50
        return null;
 
51
    }
 
52
    public String getPreferredNameExtension() {
 
53
        return getNameExtensions()[0];
 
54
    }
 
55
    public String[] getNameExtensions() {
 
56
        return new String[]{"copy"};
 
57
    }
 
58
 
 
59
    public String getReaderClassName() { 
 
60
      return null;
 
61
    }
 
62
    public String getWriterClassName() { 
 
63
      return null;
 
64
    }
 
65
 
 
66
        public boolean isXMLBased() {
 
67
                return false;
 
68
        }
 
69
 
 
70
        public int getSupportedDataFeatures() {
 
71
                return DataFeatures.NONE;
 
72
        }
 
73
 
 
74
        public int getRequiredDataFeatures() {
 
75
                return DataFeatures.NONE;
 
76
        }
 
77
}