~ubuntu-branches/ubuntu/wily/389-ds-console/wily-proposed

« back to all changes in this revision

Viewing changes to src/com/netscape/admin/dirserv/IDSResourceSelectionListener.java

  • Committer: Package Import Robot
  • Author(s): Timo Aaltonen
  • Date: 2012-03-15 19:58:37 UTC
  • Revision ID: package-import@ubuntu.com-20120315195837-296zyft51thld8q7
Tags: upstream-1.2.6
ImportĀ upstreamĀ versionĀ 1.2.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/** BEGIN COPYRIGHT BLOCK
 
2
 * Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
 
3
 * Copyright (C) 2005 Red Hat, Inc.
 
4
 * All rights reserved.
 
5
 * 
 
6
 * This program is free software; you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation version 2 of the License.
 
9
 * 
 
10
 * This program is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU General Public License for more details.
 
14
 * 
 
15
 * You should have received a copy of the GNU General Public License
 
16
 * along with this program; if not, write to the Free Software
 
17
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
18
 * END COPYRIGHT BLOCK **/
 
19
package com.netscape.admin.dirserv;
 
20
 
 
21
import com.netscape.management.client.*;
 
22
 
 
23
/**
 
24
  * Provides data for children of DSResourceModel.
 
25
  *
 
26
  * @version 0.01 10/17/97
 
27
  * @author rweltman@netscape.com
 
28
  */
 
29
public interface IDSResourceSelectionListener
 
30
{
 
31
    /**
 
32
      * Called when the object is selected.
 
33
      */
 
34
        public abstract void select( IResourceObject parent, IPage viewInstance);
 
35
 
 
36
    /**
 
37
      * Called when the object is unselected.
 
38
      */
 
39
        public abstract void unselect( IResourceObject parent, IPage viewInstance);
 
40
}