~ubuntu-branches/ubuntu/trusty/cdk/trusty-proposed

« back to all changes in this revision

Viewing changes to src/org/openscience/cdk/reaction/ReactionSpecification.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
/*
 
2
 *  $RCSfile$
 
3
 *  $Author: egonw $
 
4
 *  $Date: 2006-03-29 10:27:08 +0200 (Wed, 29 Mar 2006) $
 
5
 *  $Revision: 5855 $
 
6
 *
 
7
 *  Copyright (C) 2006-2007  Miguel Rojas <miguel.rojas@uni-koeln.de>
 
8
 *
 
9
 *  Contact: cdk-devel@lists.sourceforge.net
 
10
 *
 
11
 *  This program is free software; you can redistribute it and/or
 
12
 *  modify it under the terms of the GNU Lesser General Public License
 
13
 *  as published by the Free Software Foundation; either version 2.1
 
14
 *  of the License, or (at your option) any later version.
 
15
 *
 
16
 *  This program is distributed in the hope that it will be useful,
 
17
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
18
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
19
 *  GNU Lesser General Public License for more details.
 
20
 *
 
21
 *  You should have received a copy of the GNU Lesser General Public License
 
22
 *  along with this program; if not, write to the Free Software
 
23
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 
24
 */
 
25
package org.openscience.cdk.reaction;
 
26
 
 
27
import org.openscience.cdk.IImplementationSpecification;
 
28
 
 
29
/**
 
30
 * Class that is used to distribute reactions specifications.
 
31
 *
 
32
 * @author      Miguel Rojas
 
33
 * @cdk.module  reaction
 
34
 */
 
35
public class ReactionSpecification implements IImplementationSpecification {
 
36
 
 
37
    private String specificationReference;
 
38
    private String implementationTitle;
 
39
    private String implementationIdentifier;
 
40
    private String implementationVendor;
 
41
    
 
42
    /**
 
43
     * Container for specifying the type of reaction.
 
44
     *
 
45
     * @param specificationReference Reference to a formal definition in a
 
46
     *          dictionary (e.g. in STMML format) of the descriptor, preferably 
 
47
     *          refering to the original article. The format of the content is
 
48
     *          expected to be &lt;dictionaryNameSpace&gt;:&lt;entryID&gt;.
 
49
     * @param implementationTitle Title for the reaction process.
 
50
     * @param implementationIdentifier Unique identifier for the actual
 
51
     *          implementation, preferably including the exact version number of
 
52
     *          the source code. E.g. $Id: ReactionSpecification.java,v 1.8 2006/03/29 08:26:47 egonw Exp $ can be used when the source code is
 
53
     *          in a CVS repository.
 
54
     * @param implementationVendor Name of the organisation/person/program/whatever 
 
55
     *          who wrote/packaged the implementation.
 
56
     */
 
57
    public ReactionSpecification(
 
58
        String specificationReference,
 
59
        String implementationTitle,
 
60
        String implementationIdentifier,
 
61
        String implementationVendor) {
 
62
        this.specificationReference = specificationReference;
 
63
        this.implementationTitle = implementationTitle;
 
64
        this.implementationIdentifier = implementationIdentifier;
 
65
        this.implementationVendor = implementationVendor;
 
66
    }
 
67
    
 
68
    public String getSpecificationReference() {
 
69
        return this.specificationReference;
 
70
    };
 
71
    
 
72
    public String getImplementationTitle() {
 
73
        return this.implementationTitle;
 
74
    };
 
75
    
 
76
    public String getImplementationIdentifier() {
 
77
        return this.implementationIdentifier;
 
78
    };
 
79
    
 
80
    public String getImplementationVendor() {
 
81
        return this.implementationVendor;
 
82
    };
 
83
    
 
84
}
 
 
b'\\ No newline at end of file'