org.efaps.admin.ui.field.FieldTable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of efaps-kernel Show documentation
Show all versions of efaps-kernel Show documentation
eFaps is a framework used to map objects with or without attached files to
a relational database and optional file systems (only for attaches files). Configurable access control can be provided down to object and attribute level depending on implementation and use case. Depending on requirements, events (like triggers) allow to implement business logic and to separate business logic from user interface.
The framework includes integrations (e.g. webdav, full text search) and a web application as 'simple' configurable user interface. Some best practises, example web application modules (e.g. team work module) support administrators and implementers using this framework.
/*
* Copyright 2003 - 2012 The eFaps Team
*
* 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.
*
* Revision: $Rev: 7483 $
* Last Changed: $Date: 2012-05-11 11:57:38 -0500 (Fri, 11 May 2012) $
* Last Changed By: $Author: [email protected] $
*/
package org.efaps.admin.ui.field;
import org.efaps.admin.datamodel.Type;
import org.efaps.admin.ui.Table;
import org.efaps.ci.CIAdminUserInterface;
import org.efaps.util.EFapsException;
import org.efaps.util.cache.CacheReloadException;
/**
* @author The eFaps Team
* @version $Id: FieldTable.java 7483 2012-05-11 16:57:38Z [email protected] $
*/
public class FieldTable
extends Field
{
/**
* The instance variable stores the target user interface table object which
* is shown by the this field.
*
* @see #getTargetTable
* @see #setTargetTable
*/
private Table targetTable = null;
/**
* Name of the field the StructurBrowser is bedded into the target.
*/
private String targetStructurBrowserField;
/**
* Standard checkboxes for a table must be shown. The checkboxes are used
* e.g. to delete selected.
*
* @see #isTargetShowCheckBoxes
* @see #setTargetShowCheckBoxes
*/
private boolean targetShowCheckBoxes = false;
/**
* Is the StructurBrowser Forced to be Expanded.
*/
private boolean targetStructurBrowserForceExpand = false;
/**
* Constructor.
*
* @param _id id of this FieldTable
* @param _uuid uuid of this FieldTable
* @param _name name of this FieldTable
*/
public FieldTable(final long _id,
final String _uuid,
final String _name)
{
super(_id, _uuid, _name);
}
/**
* @see org.efaps.admin.ui.field.Field#setLinkProperty(org.efaps.admin.EFapsClassNames,
* long, org.efaps.admin.EFapsClassNames, java.lang.String)
* @param _linkType link type
* @param _toId to id
* @param _toType to type
* @param _toName to name
* @throws EFapsException on error
*/
@Override
protected void setLinkProperty(final Type _linkType,
final long _toId,
final Type _toType,
final String _toName)
throws EFapsException
{
if (_linkType.isKindOf(CIAdminUserInterface.LinkTargetTable.getType())) {
this.targetTable = Table.get(_toId);
} else {
super.setLinkProperty(_linkType, _toId, _toType, _toName);
}
}
/**
* {@inheritDoc}
*/
@Override
protected void setProperty(final String _name,
final String _value)
throws CacheReloadException
{
if ("TargetStructurBrowserField".equals(_name)) {
this.targetStructurBrowserField = _value;
} else if ("TargetShowCheckBoxes".equals(_name)) {
this.targetShowCheckBoxes = "true".equalsIgnoreCase(_value);
} else if ("TargetStructurBrowserForceExpand".equals(_name)) {
this.targetStructurBrowserForceExpand = "true".equalsIgnoreCase(_value);
} else {
super.setProperty(_name, _value);
}
}
/**
* Returns for given parameter _id the instance of class
* {@link Field}.
*
* @param _id id to search in the cache
* @return instance of class {@link Field}
*/
public static FieldTable get(final long _id)
{
return (FieldTable) Field.get(_id);
}
/**
* This is the getter method for the instance variable {@link #targetTable}.
*
* @return value of instance variable {@link #targetTable}
*/
public Table getTargetTable()
{
return this.targetTable;
}
/**
* Getter method for the instance variable {@link #targetStructurBrowserField}.
*
* @return value of instance variable {@link #targetStructurBrowserField}
*/
public String getTargetStructurBrowserField()
{
return this.targetStructurBrowserField;
}
/**
* This is the setter method for the instance variable
* {@link #targetShowCheckBoxes}.
*
* @return value of instance variable {@link #targetShowCheckBoxes}
* @see #targetShowCheckBoxes
* @see #setTargetShowCheckBoxes
*/
public boolean isTargetShowCheckBoxes()
{
return this.targetShowCheckBoxes;
}
/**
* Getter method for the instance variable {@link #targetStructurBrowserForceExpand}.
*
* @return value of instance variable {@link #targetStructurBrowserForceExpand}
*/
public boolean isTargetStructurBrowserForceExpand()
{
return this.targetStructurBrowserForceExpand;
}
}