com.holonplatform.vaadin7.components.PropertyViewForm Maven / Gradle / Ivy
/*
* Copyright 2000-2017 Holon TDCN.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.holonplatform.vaadin7.components;
import com.holonplatform.core.i18n.Localizable;
import com.holonplatform.core.i18n.LocalizationContext;
import com.holonplatform.core.internal.utils.ObjectUtils;
import com.holonplatform.core.property.Property;
import com.holonplatform.core.property.PropertyBox;
import com.holonplatform.vaadin7.components.builders.ComponentBuilder;
import com.holonplatform.vaadin7.internal.components.DefaultPropertyViewForm;
import com.vaadin.ui.Component;
/**
* A {@link PropertyViewGroup} component to display the property {@link ViewComponent}s on a layout, using the
* {@link ComposableComponent} composition strategy.
*
* A {@link Composer} is used to draw the form UI.
*
*
* @since 5.0.0
*/
public interface PropertyViewForm extends ComposableComponent, ValueComponent, PropertyViewGroup {
/**
* Get a builder to create a {@link PropertyViewForm}.
* @param Form content component type
* @param content Form content, where {@link ViewComponent}s will be composed by the form {@link Composer} (not
* null)
* @return {@link PropertyViewForm} builder
*/
static PropertyViewFormBuilder builder(C content) {
ObjectUtils.argumentNotNull(content, "Form content must be not null");
return new DefaultPropertyViewForm.DefaultBuilder<>(content);
}
/**
* {@link PropertyViewForm} builder.
* @param Form content component type
*/
public interface PropertyViewFormBuilder
extends ComposableComponent.Builder>,
PropertyViewGroup.Builder>,
ComponentBuilder> {
/**
* Set the caption for the view component bound to given property. By default, the caption is obtained from
* {@link Property} itself (which is {@link Localizable}).
* @param property Property for which to set the view component caption (not null)
* @param caption Localizable view component caption
* @return this
*/
PropertyViewFormBuilder propertyCaption(Property> property, Localizable caption);
/**
* Set the caption for the view component bound to given property. By default, the caption is obtained from
* {@link Property} itself (which is {@link Localizable}).
* @param property Property for which to set the view component caption (not null)
* @param caption View component caption
* @return this
*/
PropertyViewFormBuilder propertyCaption(Property> property, String caption);
/**
* Set the caption for the view component bound to given property. By default, the caption is obtained from
* {@link Property} itself (which is {@link Localizable}).
* @param property Property for which to set the view component caption (not null)
* @param defaultCaption Default caption if no translation is available for given messageCode
for
* current Locale, or no {@link LocalizationContext} is available at all
* @param messageCode Caption translation message key
* @param arguments Optional translation arguments
* @return this
*/
PropertyViewFormBuilder propertyCaption(Property> property, String defaultCaption, String messageCode,
Object... arguments);
/**
* Set the caption for the view component bound to given property as hidden.
* @param property Property for which to hide the view component caption (not null)
* @return this
*/
PropertyViewFormBuilder hidePropertyCaption(Property> property);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy