Person.java revision 1239:77609e069f9f
196263Sobrien/*
296263Sobrien * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
396263Sobrien * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
496263Sobrien *
596263Sobrien * This code is free software; you can redistribute it and/or modify it
696263Sobrien * under the terms of the GNU General Public License version 2 only, as
796263Sobrien * published by the Free Software Foundation.  Oracle designates this
896263Sobrien * particular file as subject to the "Classpath" exception as provided
996263Sobrien * by Oracle in the LICENSE file that accompanied this code.
1096263Sobrien *
1196263Sobrien * This code is distributed in the hope that it will be useful, but WITHOUT
1296263Sobrien * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1396263Sobrien * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
1496263Sobrien * version 2 for more details (a copy is included in the LICENSE file that
1596263Sobrien * accompanied this code).
1696263Sobrien *
1796263Sobrien * You should have received a copy of the GNU General Public License version
1896263Sobrien * 2 along with this work; if not, write to the Free Software Foundation,
1996263Sobrien * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
2096263Sobrien *
2196263Sobrien * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2296263Sobrien * or visit www.oracle.com if you need additional information or have any
2396263Sobrien * questions.
24 */
25
26package jdk.nashorn.api.javaaccess.test;
27
28@SuppressWarnings("javadoc")
29public class Person {
30
31    public int id = 0;
32
33    public Person() {
34    }
35
36    public Person(final int code) {
37        this.id = code;
38    }
39
40    @Override
41    public boolean equals(final Object obj) {
42        if (obj != null && obj instanceof Person) {
43            final Person o = (Person)obj;
44            return this.id == o.id;
45        }
46        return false;
47    }
48
49    @Override
50    public int hashCode() {
51        return id;
52    }
53
54    @Override
55    public String toString() {
56        return "Person(" + id + ")";
57    }
58
59}
60