SquirrelJME/SquirrelJME

View on GitHub
modules/tool-classfile/src/main/java/net/multiphasicapps/classfile/AnnotationValueString.java

Summary

Maintainability
A
0 mins
Test Coverage
// -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
// ---------------------------------------------------------------------------
// SquirrelJME
//     Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
// ---------------------------------------------------------------------------
// SquirrelJME is under the Mozilla Public License Version 2.0.
// See license.mkd for licensing and copyright information.
// ---------------------------------------------------------------------------

package net.multiphasicapps.classfile;

import cc.squirreljme.runtime.cldc.debug.Debugging;

/**
 * This represents an annotation value which is a string.
 *
 * @since 2018/06/16
 */
public final class AnnotationValueString
    implements AnnotationValue
{
    /** The string value. */
    protected final String value;
    
    /**
     * Initializes the string value.
     *
     * @param __v The value used
     * @throws NullPointerException On null arguments.
     * @since 2019/04/01
     */
    public AnnotationValueString(String __v)
        throws NullPointerException
    {
        if (__v == null)
            throw new NullPointerException("NARG");
        
        this.value = __v;
    }
    
    /**
     * {@inheritDoc}
     * @since 2018/06/16
     */
    @Override
    public final boolean equals(Object __o)
    {
        throw Debugging.todo();
    }
    
    /**
     * {@inheritDoc}
     * @since 2018/06/16
     */
    @Override
    public final int hashCode()
    {
        throw Debugging.todo();
    }
    
    /**
     * {@inheritDoc}
     * @since 2018/06/16
     */
    @Override
    public final String toString()
    {
        throw Debugging.todo();
    }
}