blob: 5fe8eb0e29b08d46e226de84a1791a8322e77520 [file] [log] [blame]
package org.eclipse.osbp.runtime.web.vaadin.components.fields.shared;
import com.vaadin.shared.AbstractFieldState;
import com.vaadin.shared.annotations.DelegateToWidget;
@SuppressWarnings("serial")
public class EntityFieldState extends AbstractFieldState {
{
primaryStyleName = "l-entityfield";
}
/**
* The business key of the entity.
*/
@DelegateToWidget
public String entityNumber;
/**
* The description of the entity.
*/
@DelegateToWidget
public String entityDescription;
/**
* The object representation of the entity id.
*/
@DelegateToWidget
public Object entityId;
/**
* True if the search icon should be visible.
*/
@DelegateToWidget
public boolean searchEnabled;
}