Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: org/openscience/compchem/Edge.java


1   /* Edge.java
2    *
3    * Copyright (C) 1997, 1998  Dr. Christoph Steinbeck 
4    * 
5    * Contact: steinbeck@ice.mpg.de
6    * 
7    * This program is free software; you can redistribute it and/or
8    * modify it under the terms of the GNU General Public License as
9    * published by the Free Software Foundation; either version 2 of the
10   * License, or (at your option) any later version.  All I ask is that
11   * proper credit is given for my work, which includes - but is not
12   * limited to - adding the above copyright notice to the beginning of
13   * your source code files, and to any copyright notice that you may
14   * distribute with programs based on this work.
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 General Public License for more details.
20   * 
21   * You should have received a copy of the GNU General Public License
22   * along with this program; if not, write to the Free Software
23   * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
24   * 02111-1307, USA.
25   *  
26   */
27  
28  package org.openscience.compchem;
29  
30  public class Edge {
31      public int from, to;
32  
33      public Edge() {}
34  
35      public Edge(int from, int to) {
36          this.from = from;
37          this.to = to;
38      }
39  }