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

com.vaadin.v7.data.fieldgroup.Caption Maven / Gradle / Ivy

There is a newer version: 8.27.3
Show newest version
/*
 * Copyright (C) 2000-2024 Vaadin Ltd
 *
 * This program is available under Vaadin Commercial License and Service Terms.
 *
 * See  for the full
 * license.
 */
package com.vaadin.v7.data.fieldgroup;

import com.vaadin.ui.Component;

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

/**
 * @deprecated As of 8.0, no replacement available, use {@link Component#setCaption}.
 */
@Target({ ElementType.FIELD })
@Retention(RetentionPolicy.RUNTIME)
@Deprecated
public @interface Caption {
    String value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy