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

com.github.thorbenkuck.netcom2.auto.annotations.Connect Maven / Gradle / Ivy

The newest version!
package com.github.thorbenkuck.netcom2.auto.annotations;

import java.lang.annotation.*;

/**
 * Handles the connection of a new {@link com.github.thorbenkuck.netcom2.network.shared.clients.Client}.
 * 

* Any annotated method might have one or zero parameters. If one parameter is present, it must be a {@link com.github.thorbenkuck.netcom2.network.shared.clients.Client} */ @Retention(RetentionPolicy.CLASS) @Target(ElementType.METHOD) @Documented public @interface Connect { String name() default ""; boolean autoLoad() default true; }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy