All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.immutables.grammar.Node Maven / Gradle / Ivy

There is a newer version: 0.0.5
Show newest version
package io.immutables.grammar;

import org.immutables.value.Value;

/** Immutables style annotation for generated AST nodes. */
@Value.Style(
		add = "*",
		addAll = "*",
		attributelessSingleton = true,
		strictBuilder = true,
		overshadowImplementation = true,
		typeImmutable = "*Nodes",
		typeImmutableEnclosing = "*Nodes",
		visibility = Value.Style.ImplementationVisibility.PACKAGE,
		defaults = @Value.Immutable(builder = false, prehash = true))
@Value.Enclosing
public @interface Node {}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy