X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=concepts%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fyangtools%2Fconcepts%2FPath.java;fp=concepts%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fyangtools%2Fconcepts%2FPath.java;h=d73326432d5f97eb6d2279e91de3b9c80cc7fd5d;hb=309fbaf39e72b85554b2204dae3bfc58b9e8dbab;hp=0000000000000000000000000000000000000000;hpb=113b12cb05929732ee824f02952184ee50bb8c6c;p=yangtools.git diff --git a/concepts/src/main/java/org/opendaylight/yangtools/concepts/Path.java b/concepts/src/main/java/org/opendaylight/yangtools/concepts/Path.java new file mode 100644 index 0000000000..d73326432d --- /dev/null +++ b/concepts/src/main/java/org/opendaylight/yangtools/concepts/Path.java @@ -0,0 +1,13 @@ +/* + * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ +package org.opendaylight.yangtools.concepts; + +public interface Path

> { + + boolean contains(P other); +}