ncellpair.java

来自「Sequence alignement using different algo」· Java 代码 · 共 45 行

JAVA
45
字号
package norman.baba.grids;

import java.util.Vector;

/**
 * <p>Title: </p>
 *
 * <p>Description: </p>
 *
 * <p>Copyright: Copyright (c) 2005</p>
 *
 * <p>Company: </p>
 *
 * @author not attributable
 * @version 1.0
 */
public class NCellPair {

          private CellElement CellOne;
          private CellElement CellTwo;

          public NCellPair(CellElement e1,CellElement e2) {
              CellOne = e1;
              CellTwo = e2;
          }

          public Vector getCellPair() {
              Vector tmp = new Vector();
              tmp.add(CellOne);
              tmp.add(CellTwo);
              return tmp;
          }

          public CellElement getCellOne() {
              return CellOne;
          }

          public CellElement getCellTwo() {
              return CellTwo;
          }



    }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?