01: /*
02: * CONFIDENTIAL AND PROPRIETARY SOURCE CODE OF
03: * NETSCAPE COMMUNICATIONS CORPORATION
04: *
05: * Copyright (c) 1996 Netscape Communications Corporation.
06: * All Rights Reserved.
07: * Use of this Source Code is subject to the terms of the applicable
08: * license agreement from Netscape Communications Corporation.
09: *
10: * ==> MCW 07/97 <==
11: */
12:
13: package applications;
14:
15: import com.indius.grid.SimpleGrid;
16:
17: /**
18: * NoSortSimpleGrid extends SimpleGrid and supresses the column sort.
19: */
20: public class NoSortSimpleGrid extends SimpleGrid {
21: public void setSortColumn(int c) {
22: // No-Oped to supress sorting
23: }
24: }
|