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

org.zkoss.bind.annotation.Immutable Maven / Gradle / Ivy

There is a newer version: 10.0.0-jakarta
Show newest version
/* Immutable.java

	Purpose:
		
	Description:
		
	History:
		Jan 7, 2012 12:22:59 AM, Created by henrichen

Copyright (C) 2012 Potix Corporation. All Rights Reserved.
*/

package org.zkoss.bind.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Marker annotation to indicate an immutable class (no setters).
 * @author henrichen
 * @author dennis
 * @since 6.0.0
 */
@Target(value = { ElementType.TYPE, ElementType.METHOD })
@Retention(RetentionPolicy.RUNTIME)
@Inherited
public @interface Immutable {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy