Interface.java revision 3233:b5d08bc0d224
154359Sroberto/*
254359Sroberto * Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved.
354359Sroberto * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
454359Sroberto *
5285612Sdelphij * This code is free software; you can redistribute it and/or modify it
654359Sroberto * under the terms of the GNU General Public License version 2 only, as
754359Sroberto * published by the Free Software Foundation.
854359Sroberto *
954359Sroberto * This code is distributed in the hope that it will be useful, but WITHOUT
1054359Sroberto * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11285612Sdelphij * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
1254359Sroberto * version 2 for more details (a copy is included in the LICENSE file that
13285612Sdelphij * accompanied this code).
14285612Sdelphij *
15285612Sdelphij * You should have received a copy of the GNU General Public License version
16285612Sdelphij * 2 along with this work; if not, write to the Free Software Foundation,
17285612Sdelphij * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18285612Sdelphij *
19285612Sdelphij * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20285612Sdelphij * or visit www.oracle.com if you need additional information or have any
21285612Sdelphij * questions.
22285612Sdelphij */
23285612Sdelphijpackage pkg1;
2454359Sroberto
25285612Sdelphijimport java.time.chrono.ChronoLocalDate;
26285612Sdelphijimport java.time.chrono.ChronoPeriod;
27285612Sdelphij
2854359Srobertopublic interface Interface {
29285612Sdelphij    public static ChronoPeriod between(ChronoLocalDate startDateInclusive, ChronoLocalDate endDateExclusive) {
30285612Sdelphij        return null;
31285612Sdelphij    }
32285612Sdelphij}
33285612Sdelphij