com.vaadin.v7.data.util.sqlcontainer.RowItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vaadin-compatibility-server Show documentation
Show all versions of vaadin-compatibility-server Show documentation
Vaadin 7 compatibility package for Vaadin 8
The 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.util.sqlcontainer;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import com.vaadin.v7.data.Item;
import com.vaadin.v7.data.Property;
/**
* RowItem represents one row of a result set obtained from a QueryDelegate.
*
* Note that depending on the QueryDelegate in use this does not necessarily map
* into an actual row in a database table.
*
* @deprecated As of 8.0, no replacement available.
*/
@Deprecated
public final class RowItem implements Item {
private static final long serialVersionUID = -6228966439127951408L;
private SQLContainer container;
private RowId id;
private Collection properties;
/**
* Prevent instantiation without required parameters.
*/
@SuppressWarnings("unused")
private RowItem() {
}
public RowItem(SQLContainer container, RowId id,
Collection properties) {
if (container == null) {
throw new IllegalArgumentException("Container cannot be null.");
}
if (id == null) {
throw new IllegalArgumentException("Row ID cannot be null.");
}
this.container = container;
this.properties = properties;
/* Set this RowItem as owner to the properties */
if (properties != null) {
for (ColumnProperty p : properties) {
p.setOwner(this);
}
}
this.id = id;
}
@Override
public Property getItemProperty(Object id) {
if (id instanceof String) {
for (ColumnProperty cp : properties) {
if (id.equals(cp.getPropertyId())) {
return cp;
}
}
}
return null;
}
@Override
public Collection> getItemPropertyIds() {
Collection ids = new ArrayList(properties.size());
for (ColumnProperty cp : properties) {
ids.add(cp.getPropertyId());
}
return Collections.unmodifiableCollection(ids);
}
/**
* Adding properties is not supported. Properties are generated by
* SQLContainer.
*/
@Override
public boolean addItemProperty(Object id, Property property)
throws UnsupportedOperationException {
throw new UnsupportedOperationException();
}
/**
* Removing properties is not supported. Properties are generated by
* SQLContainer.
*/
@Override
public boolean removeItemProperty(Object id)
throws UnsupportedOperationException {
throw new UnsupportedOperationException();
}
public RowId getId() {
return id;
}
public SQLContainer getContainer() {
return container;
}
public boolean isModified() {
if (properties != null) {
for (ColumnProperty p : properties) {
if (p.isModified()) {
return true;
}
}
}
return false;
}
@Override
public String toString() {
StringBuilder s = new StringBuilder();
s.append("ID:");
s.append(getId());
for (Object propId : getItemPropertyIds()) {
s.append('|');
s.append(propId);
s.append(':');
Object value = getItemProperty(propId).getValue();
s.append(value);
}
return s.toString();
}
public void commit() {
if (properties != null) {
for (ColumnProperty p : properties) {
p.commit();
}
}
}
}