tests/libjava-mauve/src/gnu/testlet/javax/management/MBeanServerInvocationHandler/TestCMXBean.java
branchjk_new_structure
changeset 1541 75c2e24dea9a
parent 1540 92ac284961c1
child 1542 be11db817bcf
equal deleted inserted replaced
1540:92ac284961c1 1541:75c2e24dea9a
     1 // Tags: not-a-test
       
     2 
       
     3 // Copyright (C) 2007 Andrew John Hughes <gnu_andrew@member.fsf.org>
       
     4 
       
     5 // This file is part of Mauve.
       
     6 
       
     7 // Mauve is free software; you can redistribute it and/or modify
       
     8 // it under the terms of the GNU General Public License as published by
       
     9 // the Free Software Foundation; either version 2, or (at your option)
       
    10 // any later version.
       
    11 
       
    12 // Mauve is distributed in the hope that it will be useful,
       
    13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
       
    15 // GNU General Public License for more details.
       
    16 
       
    17 // You should have received a copy of the GNU General Public License
       
    18 // along with Mauve; see the file COPYING.  If not, write to
       
    19 // the Free Software Foundation, 59 Temple Place - Suite 330,
       
    20 // Boston, MA 02111-1307, USA.
       
    21 
       
    22 package gnu.testlet.javax.management.MBeanServerInvocationHandler;
       
    23 
       
    24 import javax.management.ObjectName;
       
    25 
       
    26 import java.util.Map;
       
    27 import java.util.Set;
       
    28 import java.util.SortedMap;
       
    29 import java.util.SortedSet;
       
    30 
       
    31 /**
       
    32  * Test {@link javax.management.MXBean} for proxying.
       
    33  *
       
    34  * @author <a href="mailto:gnu_andrew@member.fsf.org">Andrew John Hughes</a>
       
    35  */
       
    36 public interface TestCMXBean
       
    37 {
       
    38   
       
    39   int getId();
       
    40 
       
    41   void setId(int id);
       
    42 
       
    43   Integer getSize();
       
    44 
       
    45   void setSize(Integer size);
       
    46 
       
    47   ObjectName getName();
       
    48 
       
    49   void setName(ObjectName name);
       
    50   
       
    51   float[] getWeights();
       
    52 
       
    53   void setWeights(float[] weights);
       
    54 
       
    55   String[] getNames();
       
    56 
       
    57   void setNames(String[] names);
       
    58 
       
    59   Set<Integer> getAges();
       
    60 
       
    61   void setAges(Set<Integer> ages);
       
    62 
       
    63   SortedSet<String> getBiscuits();
       
    64 
       
    65   void setBiscuits(SortedSet<String> biscuits);
       
    66 
       
    67   Colour getColour();
       
    68 
       
    69   void setColour(Colour colour);
       
    70 
       
    71   Map<String,Integer> getPhoneNumbers();
       
    72 
       
    73   void setPhoneNumbers(Map<String,Integer> numbers);
       
    74 
       
    75   SortedMap<String, Integer> getSortedPhoneNumbers();
       
    76 
       
    77   void setSortedPhoneNumbers(SortedMap<String, Integer> numbers);
       
    78 
       
    79   ChildMXBean getChild();
       
    80 
       
    81   void setChild(ChildMXBean bean);
       
    82 
       
    83 }