test/langtools/jdk/javadoc/doclet/testSearchScript/mapmodule/mappkg/impl/MyMap.java
changeset 54619 b43cc3b9ef40
equal deleted inserted replaced
54618:152c6c501ba5 54619:b43cc3b9ef40
       
     1 /*
       
     2  * Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
       
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
       
     4  *
       
     5  * This code is free software; you can redistribute it and/or modify it
       
     6  * under the terms of the GNU General Public License version 2 only, as
       
     7  * published by the Free Software Foundation.
       
     8  *
       
     9  * This code is distributed in the hope that it will be useful, but WITHOUT
       
    10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
       
    11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
       
    12  * version 2 for more details (a copy is included in the LICENSE file that
       
    13  * accompanied this code).
       
    14  *
       
    15  * You should have received a copy of the GNU General Public License version
       
    16  * 2 along with this work; if not, write to the Free Software Foundation,
       
    17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
       
    18  *
       
    19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
       
    20  * or visit www.oracle.com if you need additional information or have any
       
    21  * questions.
       
    22  */
       
    23 
       
    24 package mappkg.impl;
       
    25 
       
    26 import mappkg.Map;
       
    27 import java.util.Iterator;
       
    28 
       
    29 /**
       
    30  * {@index "search tag"}
       
    31  */
       
    32 public class MyMap implements Map {
       
    33 
       
    34     /** {@systemProperty mappkg.system.property} */
       
    35     public int some_value;
       
    36     public int OTHER_VALUE;
       
    37 
       
    38     public MyMap() {}
       
    39 
       
    40     public MyMap(Map map) {}
       
    41 
       
    42     @Override
       
    43     public void put(Object key, Object value) {}
       
    44 
       
    45     @Override
       
    46     public boolean contains(Object key) {
       
    47         return false;
       
    48     }
       
    49 
       
    50     @Override
       
    51     public Object get(Object key) {
       
    52         return null;
       
    53     }
       
    54 
       
    55     @Override
       
    56     public void remove(Object key) {}
       
    57 
       
    58     @Override
       
    59     public Iterator<Object> iterate() {
       
    60         return null;
       
    61     }
       
    62 }