Move YangTextSource
[yangtools.git] / model / yang-model-spi / src / main / java / org / opendaylight / yangtools / yang / model / spi / source / YangTextSource.java
diff --git a/model/yang-model-spi/src/main/java/org/opendaylight/yangtools/yang/model/spi/source/YangTextSource.java b/model/yang-model-spi/src/main/java/org/opendaylight/yangtools/yang/model/spi/source/YangTextSource.java
deleted file mode 100644 (file)
index 785a611..0000000
+++ /dev/null
@@ -1,57 +0,0 @@
-/*
- * Copyright (c) 2014 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.yang.model.spi.source;
-
-import static java.util.Objects.requireNonNull;
-
-import com.google.common.base.MoreObjects;
-import com.google.common.base.MoreObjects.ToStringHelper;
-import com.google.common.io.CharSource;
-import java.io.InputStream;
-import org.eclipse.jdt.annotation.NonNull;
-import org.opendaylight.yangtools.yang.model.api.source.SourceIdentifier;
-import org.opendaylight.yangtools.yang.model.api.source.YangSourceRepresentation;
-
-/**
- * YANG text schema source representation. Exposes an RFC6020 or RFC7950 text representation as an {@link InputStream}.
- */
-public abstract class YangTextSource extends CharSource implements YangSourceRepresentation {
-    private final @NonNull SourceIdentifier sourceId;
-
-    protected YangTextSource(final SourceIdentifier sourceId) {
-        this.sourceId = requireNonNull(sourceId);
-    }
-
-    @Override
-    public final Class<YangTextSource> getType() {
-        return YangTextSource.class;
-    }
-
-    @Override
-    public final SourceIdentifier sourceId() {
-        return sourceId;
-    }
-
-    @Override
-    public final String toString() {
-        return addToStringAttributes(MoreObjects.toStringHelper(this).omitNullValues()).toString();
-    }
-
-    /**
-     * Add subclass-specific attributes to the output {@link #toString()} output. Since
-     * subclasses are prevented from overriding {@link #toString()} for consistency
-     * reasons, they can add their specific attributes to the resulting string by attaching
-     * attributes to the supplied {@link ToStringHelper}.
-     *
-     * @param toStringHelper ToStringHelper onto the attributes can be added
-     * @return ToStringHelper supplied as input argument.
-     */
-    protected ToStringHelper addToStringAttributes(final @NonNull ToStringHelper toStringHelper) {
-        return toStringHelper.add("identifier", sourceId);
-    }
-}