01: /*
02: * <copyright>
03: *
04: * Copyright 2000-2004 BBNT Solutions, LLC
05: * under sponsorship of the Defense Advanced Research Projects
06: * Agency (DARPA).
07: *
08: * You can redistribute this software and/or modify it under the
09: * terms of the Cougaar Open Source License as published on the
10: * Cougaar Open Source Website (www.cougaar.org).
11: *
12: * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
13: * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
14: * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
15: * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
16: * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
17: * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
18: * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19: * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20: * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21: * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
22: * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23: *
24: * </copyright>
25: */
26:
27: package org.cougaar.tools.csmart.ui.community;
28:
29: import java.util.ArrayList;
30:
31: /**
32: * Defines methods for interfacing to the table that are
33: * not part of TableModel.
34: */
35:
36: public interface CommunityTableUtils {
37:
38: /**
39: * Return all values in the specified column; removes duplicates.
40: * @param column index of column
41: * @return unique values in that column
42: */
43: ArrayList getKnownValues(int column);
44:
45: /**
46: * Delete the specified row.
47: * @param rowIndex the index of the row to delete
48: */
49: void deleteRow(int rowIndex);
50:
51: /**
52: * Make the table empty.
53: */
54: void clear();
55:
56: /**
57: * Display all information for the community in the table.
58: * @param communityId the community
59: */
60: void getAllCommunityInfo(String communityId);
61:
62: /**
63: * Display attributes for the community in the table.
64: * @param communityId the community
65: */
66: void getCommunityInfo(String communityId);
67:
68: /**
69: * Display attributes for the entity in the community in the table.
70: * @param communityId the community
71: * @param entityId the entity
72: */
73: void getEntityInfo(String communityId, String entityId);
74:
75: /**
76: * Display attributes for the child entities of the selected tree node
77: * in the table.
78: * @param communityId the community
79: * @param entityId the entity
80: */
81: void getChildrenEntityInfo(String communityId, String entityId);
82: }
|