00001 //tabstop=4 00002 //*****************************************************************************/ 00003 // Project: jpl 00004 // 00005 // File: $Id$ 00006 // Date: $Date$ 00007 // Author: Fred Dushin <fadushin@syr.edu> 00008 // 00009 // 00010 // Description: 00011 // 00012 // 00013 // ------------------------------------------------------------------------- 00014 // Copyright (c) 1998 Fred Dushin 00015 // All rights reserved. 00016 // 00017 // This library is free software; you can redistribute it and/or 00018 // modify it under the terms of the GNU Library Public License 00019 // as published by the Free Software Foundation; either version 2 00020 // of the License, or (at your option) any later version. 00021 // 00022 // This library is distributed in the hope that it will be useful, 00023 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00024 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00025 // GNU Library Public License for more details. 00026 //*****************************************************************************/ 00027 package jpl.fli; 00028 00029 //----------------------------------------------------------------------/ 00030 // LongHolder 00050 // Implementation notes: 00051 // 00052 //----------------------------------------------------------------------/ 00053 public class LongHolder { 00054 public long value = 0L; 00055 00056 public boolean equals(LongHolder lh) { 00057 return lh.value == this.value; 00058 } 00059 } 00060 00061 //345678901234567890123456789012346578901234567890123456789012345678901234567890